美文网首页
Nginx在线安装与卸载

Nginx在线安装与卸载

作者: 葉糖糖 | 来源:发表于2023-11-21 11:08 被阅读0次

    一、卸载nginx

    卸载nginx是一件比较麻烦的事情,首先需要检查服务器上是否安装了nginx。

    nginx -V指令可以查看当前nginx的版本及其他相关信息。

    nginx版本查看

    二、按照步骤卸载

    卸载步骤一定要按照这个,其他的方法可能会卸载不干净,再次安装的时候会出现问题。

    sudo apt-get remove nginx nginx-common
    sudo apt-get purge nginx nginx-common
    sudo apt-get autoremove
    sudo apt-get remove nginx-full nginx-common
    

    三、重新安装

    sudo apt-get install nginx
    

    四、其他相关指令

    1、修改配置文件地址

    sudo find / -name nginx.service
    

    通过命令找到nginx.service这个配置文件,然后修改配置文件的指向。

    ExecStart=/usr/sbin/nginx -c /path/to/nginx.conf
    

    /path/to需要更换成当前系统nginx.conf的位置。

    2、启动、关闭

    systemctl start nginx
    systemctl stop nginx
    

    3、查看nginx端口

    sudo netstat -tunpl | grep nginx
    ss -tnulp | grep 80
    ps -ef | grep nginx
    

    PS:nginx使用非常的广泛,要学习的知识也非常的多,我们需要戒骄戒躁。

    相关文章

      网友评论

          本文标题:Nginx在线安装与卸载

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