Showing posts with label apache start. Show all posts
Showing posts with label apache start. Show all posts

November 26, 2014

Apache service Start, Stop and Restart

To start Apache server
sudo service apache2 start
           ( or )
sudo /etc/init.d/apache2 start


 To stop Apache server
sudo service apache2 stop
           (or)
sudo /etc/init.d/apache2 stop

 To restart Apache server
sudo service apache2 restart
           (or)
sudo /etc/init.d/apache2 restart