Rumah > Artikel > Operasi dan penyelenggaraan > ubuntu如何卸载apache
ubuntu如何卸载apache?
ubuntu中apache2的安装与卸载
一:安装apache2
安装命令:sudo apt-get install apache2
启动/停止/重启apache2: service apache2 start/stop/restart
二: 卸载apache2
(1)之前卸载重新安装后找不到apache2.conf配置文件,测试使用一下方式卸载后可用。
$ sudo apt-get --purge remove apache2 $ sudo apt-get --purge remove apache2.2-common $ sudo apt-get autoremove
(2)(关键一步)找到没有删除掉的配置文件,一并删除
$ sudo find /etc -name "*apache*" -exec rm -rf {} \; $ sudo rm -rf /var/www
推荐学习:Apache教程
Atas ialah kandungan terperinci ubuntu如何卸载apache. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!