CentOS7使用Nginx总结

作者: 世外大帝 | 来源:发表于2018-04-11 10:15 被阅读11次

    CentOS7

    使用yum 安装的话,默认是作为服务器,开机自动启动的

    启动nginx服务

    systemctl start nginx.service

    停止nginx服务

    systemctl stop nginx.service

    重启nginx服务

    systemctl restart nginx.service

    重新读取nginx配置(这个最常用, 不用停止nginx服务就能使修改的配置生效)

    systemctl reload nginx.service

    状态查询

    systemctl status nginx.service

    端口占用

    netstat -tunlp |grep 端口号

    相关文章

      网友评论

        本文标题:CentOS7使用Nginx总结

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