Es scheint, dass ein einfaches apt-get remove apache2
nicht vollständig entfernt wird, apache2
da ich es immer noch auf einem der Prozesse sehen kann, wenn es ausgeführt wird top
. Wie entfernt man apache2
komplett auf seinem Ubuntu Server?
Es ist in der Tat nicht entfernt:
~# which apache2
/usr/sbin/apache2
~# whereis apache2
apache2: /usr/sbin/apache2 /etc/apache2 /usr/lib/apache2 /usr/share/apache2 /usr/share/man/man8/apache2.8.gz
Aber wenn ich apt-get remove apache2
nochmal mache :
# apt-get remove apache2
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package apache2 is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
apt-get autoremove
und dannsudo rm -rf /etc/apache2
apt-get purge apache2
. Es werden alle Konfigurationsdateien entfernt.