First page Back Continue Last page Overview Graphics
Using a Run Control Script to Stop or Start Services
Turn off web server functionality by typing:
# /etc/init.d/apache stop
# pgrep -f apache
Restart the web server by typing:
# /etc/init.d/apache start
# pgrep -f apache
# pgrep -f apache -d, | xargs ps -fp
Notes: