记一次卸载重装nginx遇到的问题

2018-11-27  本文已影响0人  Gaterny

卸载nginx不保留配置文件

$ sudo apt-get --purge remove nginx

卸载自动安装且不再需要的依赖包

$ sudo apt-get autoremove

筛选已安装软件包中与nginx有关的

$ dpkg --get-selections | grep nginx

nginx-common                                    deinstall

卸载nginx-common不保留配置文件

$ sudo apt-get --purge remove nginx-common

重新安装nginx

$ sudo apt-get install nginx
...
查看版本号,执行nginx配置文件语法检测

$ nginx -v
nginx version: nginx/1.10.3 (Ubuntu)
$ sudo nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
上一篇 下一篇

猜你喜欢

热点阅读