从 ubuntu 中删除 apache

从 ubuntu 中删除 apache

我想删除 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。

答案1

apache2不包含真正的配置文件。尝试

dpkg --purge apache2-common

根据其描述:

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

答案2

dpkg——清除apache2

答案3

sudo apt-get remove --purge $(dpkg -l apache* | grep ii | awk '{print $2}') 

相关内容