Debian 或 Ubuntu 上,卸载和移除 Apache2
一、停止:
service apache2 stop
二、卸载:
apt-get purge apache2 apache2-utils apache2.2-bin apache2-common
apt-get autoremove
三、移除:
whereis apache2
# 上述命令显示`apache2`的具体路劲,可能有多个;例如:
apache2: /etc/apache2
# 最后则删除这个或多个目录:
rm -rf /etc/apache2
END。
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。