如何删除 Apache

如何删除 Apache

如何从我的服务器中删除 apache?我正在使用 Ubuntu 9 64 位,其中已预先安装 apache2。

答案1

这样的命令可能会消除一切。

dpkg --get-selections | grep apache | xargs apt-get --yes apt-get purge

您可能应该dpkg --get-selections | grep apache首先运行此命令来查看将要卸载的软件包列表,以便确保 grep 选择了正确的内容。

答案2

以 root 身份(或通过 sudo):$ apt-get remove apache2

答案3

sudo /etc/init.d/apache2 stop
sudo apt-get --purge remove apache2

答案4

这对我有用:aptitude purge ~i~napache

相关内容