JavaScript disabled You need to activate JavaScript in order to use OpenProject! Learn more
Added by Douglas Leonardo over 10 years ago
I installed Open Project on an external server, when I leave the server, OpenProject falls. Have spent the parameter & when I start it but does not solve. Algém can help?
I run it with the d option:
RAILS_ENV=production bundle exec rails server -d
You can kill it by finding the process id with lsof and kill the process:
lsof -i :3000 kill -9 ##INSERT_PID##
This will leave it on in the background. Maybe the better option is to set it up in apache:
https://www.openproject.org/topics/684
Replies (1)
I run it with the d option:
RAILS_ENV=production bundle exec rails server -d
You can kill it by finding the process id with lsof and kill the process:
lsof -i :3000 kill -9 ##INSERT_PID##
This will leave it on in the background. Maybe the better option is to set it up in apache:
https://www.openproject.org/topics/684