Reputation: 123
I'm installing a new version of Redmine under Debian 8. I followed the steps described here: http://www.redmine.org/projects/redmine/wiki/HowTo_Install_Redmine_on_Debian_8_with_Apache2-Passenger
I had some problems with passenger so I installed it using:
gem install passenger
passenger-install-apache2-module
I added
PassengerDefaultUser www-data
on the passenger confing file and on the appache config file as well to avoid permission problems
The problem is that passenger is still running as nobody
.
result of top | grep "passenger"
gives 3 process named PassengerAgent
, 2 of them runs as root
and one runs as nobody
. What should I do to have the effect of the configuration i added?
I have :
Upvotes: 1
Views: 944