BIP KB Tag: Stop
How To Start, Stop, And Restart Apache Web Server On Ubuntu
To start, stop, and restart the Apache Web Server (httpd) on Ubuntu, you can use the /etc/init.d/apache2 script.
You need to ssh to your Pod as root, or use sudo command. Here are each of the commands:
Start:
root@mypod:~# sudo /etc/init.d/apache2 start
Stop:
root@mypod:~# sudo /etc/init.d/apache2 stop
Restart:
root@mypod:~# sudo /etc/init.d/apache2 restart
...
By tabitha, March 17, 2015