stop apache start nginx 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: centos stop apache
systemctl restart httpd.service
systemctl start httpd.service
systemctl stop httpd.service