Possible Duplicate:
Finding out what user Apache is running as?
I use openSuse and I try to find out the name of the apache user. So I enter
vim /etc/passwd
in the terminal. Or
ps -a
Both don't have apache listed. I have mysql and other stuff but apache isn't mentioned. Any ideas?
ps aux | grep httpd
Output:

wwwrun– user9517 Aug 05 '11 at 07:33groups wwwrun. – quanta Aug 05 '11 at 07:40grep -i "^user" /etc/apache2/uid.conf– GuyT Aug 05 '14 at 07:38