disable apache ubuntu code example
Example 1: remove apache2 from ubuntu
$ sudo systemctl stop apache2
$ sudo apt-get purge apache2 apache2-utils apache2-bin apache2.2-common
$ sudo apt-get autoremove
$ which apache2
$ sudo systemctl start apache2
Example 2: stop apache server
systemctl start apache2.service
systemctl stop apache2.service
systemctl restart apache2.service
Example 3: restart apache
sudo systemctl restart apache2
sudo service apache2 restart
Example 4: remove apache ubuntu
sudo apt autoremove
sudo apt remove apache2
sudo apt-get purge apache2 apache2-utils apache2-bin apache2.2-common