Remove Apache2 From Ubuntu

[Solved] Remove Apache2 From Ubuntu | Shell - Code Explorer | yomemimo.com
Question : completely uninstall apache from ubuntu

Answered by : kipngetich-ngeno

sudo apt-get remove --purge apache2 apache2-data apache2-utils

Source : | Last Update : Thu, 22 Jul 21

Question : completely remove apache in ubuntu

Answered by : deepak-kumar-sachan

sudo apt remove --purge apache2
sudo apt autoremove -y

Source : https://askubuntu.com/questions/176964/permanently-removing-apache2 | Last Update : Thu, 10 Feb 22

Question : How to completely uninstall apache on ubuntu?

Answered by : devtz007

{"tags":[{"tag":"p","content":"Uninstall apache server on ubuntu (apache2)"},{"tag":"textarea","content":"$ sudo service apache2 stop\n$ sudo apt-get purge apache2 apache2-utils apache2.2-bin apache2-common\n$ sudo apt-get autoremove\n$ whereis apache2\napache2: \/etc\/apache2\n$ sudo rm -rf \/etc\/apache2","code_language":"whatever"}]}

Source : https://www.edureka.co/community/46181/how-to-uninstall-apache2-on-ubuntu | Last Update : Sun, 19 Mar 23

Question : Completely uninstall apache2

Answered by : long-locust-6bchlrhsm70y

$sudo service apache2 stop
$ sudo apt-get purge apache2 apache2-utils apache2.2-bin apache2-common
$ sudo apt-get autoremove
$ whereis apache2

Source : https://www.xmodulo.com/how-to-uninstall-and-remove-apache2-on-ubuntu-debian.html | Last Update : Fri, 23 Jul 21

Question : remove apache2 ubuntu

Answered by : you

sudo apt-get remove apache2

Source : | Last Update : Tue, 19 Sep 23

Answers related to remove apache2 from ubuntu

Code Explorer Popular Question For Shell