Skip to content
Home » How to stop apache server

How to stop apache server

Let’s start the discussion about How to stop apache server in following methods.

Commands to start, stop and restart Apache2 server.

Given below are the commands to start, stop and restart Apache2 server :

# Restart
sudo service apache2 restart

#start
sudo service apache2 start

# Stop
sudo service apache2 stop

Systemctl commands to start, stop and restart Apache2

systemctl start apache2.service
systemctl stop apache2.service
systemctl restart apache2.service

Stopping Apache2 using the file location :

/etc/init.d/apache2 stop

I hope the strategies listed above work for you. Happy coding and come back again.

Similar Post : How to restart apache on Bitnami