存档

文章标签 ‘Nginx’

Ubuntu完全卸载Nginx

2016年8月14日 没有评论

今天在删除系统日志的时候,我以为是在日志目录,没有想到是在 /etc/nginx目录,一下子给清空了,那叫一个悲催啊。反复卸载安装了好几次都没有效果,急的满头大汗。

经过一个下午加上晚上的摸索,分享下解决方法,也非常的简单。

sudo apt-get remove nginx
sudo apt-get autoremove
sudo apt-get autoclean
sudo rm -rf /etc/nginx
sudo rm -rf /etc/init.d/nginx
sudo rm -rf /var/lib/nginx
sudo rm -rf /var/log/nginx
sudo rm -rf /etc/logrotate.d/nginx
sudo apt-get purge nginx
dpkg –get-selections|grep nginx

然后我这里就列出了nginx-common 和 nginx-core

接着继续运行

sudo apt-get –purge remove nginx-common
sudo apt-get autoremove
sudo apt-get install nginx

之后终于出现了nginx的欢迎页了,剩下的就是各种配置,就不细说了。

分类: 一句话 标签: