Wydaje się, że proste apt-get remove apache2
nie usuwa całkowicie, apache2
ponieważ nadal widzę to w jednym z procesów podczas działania top
. Jak można apache2
całkowicie usunąć na swoim serwerze Ubuntu?
Rzeczywiście nie został usunięty:
~# 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
Ale kiedy apt-get remove apache2
znowu to zrobię :
# 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
a potemsudo rm -rf /etc/apache2
apt-get purge apache2
. Spowoduje to usunięcie wszystkich plików konfiguracyjnych.