ubuntu 20 stop apache code example
Example 1: stop apache server
# On Ubuntu
## Start command ##
systemctl start apache2.service
## Stop command ##
systemctl stop apache2.service
## Restart command ##
systemctl restart apache2.service
Example 2: restart apache
sudo systemctl restart apache2
# or
sudo service apache2 restart
Example 3: apache restart ubuntu
sudo service apache2 restart