美文网首页
记一次卸载重装nginx遇到的问题

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

作者: Gaterny | 来源:发表于2018-11-27 10:15 被阅读0次

    卸载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
    

    相关文章

      网友评论

          本文标题:记一次卸载重装nginx遇到的问题

          本文链接:https://www.haomeiwen.com/subject/eogwqqtx.html