apache httpd restart 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: how to kill apache process in linux

sudo netstat -nap | grep :80
You’ll see apache2 and there is 3–4 digit numbers before it, mine is 980
sudo kill [number]

Example 3: restart apache

sudo systemctl restart apache2
# or
sudo service apache2 restart

Example 4: apache start stop restart

sudo service apache2 restart
sudo service apache2 stop
sudo service apache2 start