apache2 seem to start new processes with www-data user. How could I make it start new processes with some other user? ubuntu 11.04 by the way.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

This can only be changed globally (not for single processes or vhosts) with the statements User and Group in /etc/apache2/apache2.conf. For CGI's, you can use the suexec feature to spawn processes with another user id.

link|improve this answer
feedback

Open the /etc/apache2/apache2.conf file and change User and Group to whatever user, group you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.