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

No comments:

Post a Comment