Ubuntu

從 ubuntu 中刪除 apache

  • October 4, 2015

我想刪除 apache,就好像它從未安裝過一樣,沒有留下任何配置文件。我打算重新安裝 apache2 新鮮。我嘗試了各種 apt-get 選項組合,但均未成功。

apt-get remove apache2
apt-get remove --purge apache2
apt-get purge apache2
apt-get autoremove apache2

這些都沒有完全正確地刪除 apache。

沒有任何效果,/etc/apache2 目錄仍然存在。所以我刪除了它。當我安裝 apache 時,永遠不會創建該文件夾。

執行 Ubuntu 伺服器 10.10。

apache2不包含真正的配置文件。嘗試

dpkg --purge apache2-common

從它的描述來看:

Apache HTTP Server common files
<...>
This package contains the configuration and support scripts. <...>

dpkg –purge apache2

引用自:https://serverfault.com/questions/205926