CentOS7使用Nginx总结

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 端口号

    原文作者:世外大帝
    原文地址: https://www.jianshu.com/p/c587bda299e0
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞