Home  >  Article  >  Operation and Maintenance  >  How to uninstall apache2

How to uninstall apache2

藏色散人
藏色散人Original
2019-08-09 10:57:324606browse

How to uninstall apache2

如何卸载apache2?

Ubuntu卸载删除apache2的方法:

sudo apt-get --purge remove apache-common
sudo apt-get --purge remove apache

找到没有删除掉的配置文件,一并删除

sudo find /etc -name "*apache*" |xargs rm -rf 
sudo rm -rf /var/www
sudo rm -rf /etc/libapache2-mod-jk
sudo rm -rf /etc/init.d/apache2
sudo rm -rf /etc/apache2

删除关联,

dpkg -l |grep apache2|awk '{print $2}'|xargs dpkg -P

删除svn

sudo apt-get remove subversion
sudo apt-get remove libapache2-svn

最后用 dpkg -l | grep apache 和 dpkg -l | grep apache2检查,如无返回即干净卸载

更多Apache相关知识,请访问Apache使用教程栏目!

The above is the detailed content of How to uninstall apache2. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to restart apacheNext article:How to restart apache