Content
You are here:
Performance Issue - Urgent
Added by Saranga Namala about 11 years ago
Hi,
Just installed OpenProject2.4 successfully with mysql5.5, ruby1.8.7-p370
HW Config:
VMware
Intel Core2Duo 2.53
2 GB RAM
Problem:
localhost:3000 is loading smoothly, But when I try to access with IP:3000 from another PC it takes ages to load.
Does anyone know what would have gone wrong? If there is a solution please post.
Thanks.
Namala.
Replies (2)
Hi,
loading pages from another PC is really slow because of WEBrick (the built-in development web server). There are two ways out of it: Set-up a real production system, or replace WEBbrick and continue with the development set-up.
Gemfile.local
file. Insert the linedo
bundle install
to install thin and its dependenciesstart your server with
bundle exec thin -e production start
(which uses some production settings, omit the-e production
if you actually want to develop OpenProject)The startup of the server should now look like this:
yours,
Philipp
Thanks.