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.
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.
This can only be changed globally (not for single processes or vhosts) with the statements
User
andGroup
in/etc/apache2/apache2.conf
. For CGI's, you can use thesuexec
feature to spawn processes with another user id.Open the
/etc/apache2/apache2.conf
file and changeUser
andGroup
to whatever user, group you want.