Finding the webserver's group name.
Return to Migrating to WeBWorK 2.0
Problem: Can't find httpd using ps -aux |grep httpd
- It's possible that the apache server is not running. See the section on restarting the server in http://webhost.math.rochester.edu/webworkdocs/docs/howto/howto_set_up_webwork2
-
The output of
ps -aux | grep httpd
is truncated to the width of the screen and you may not be able to find
the text "httpd" . You'll want to use one of the alternative methods
for finding the group name of the server. Instead use
ps -auwwx |grep httpd
or
ps -auwwxc |grep httpd
which will print long lines no matter what the terminal width.
Once you have the user name of the webserver (e.g. www ) use the groups command to find out what groups the webserver belongs to:
groups www
www wwdata
The webserver belongs to both the groups www and wwdata .
Return to Migrating to WeBWorK 2.0
<| Post or View Comments |> |