欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

nginx 常用命令

程序员文章站 2022-03-04 12:48:51
...

重启、启动、关闭

nginx重启之前,一定要先检测配置文件的正确性,以防止nginx无法启动。
确定配置文件正确性之后,再进行其他命令的操作

  1. 检测配置文件的正确性(先进入nginx的sbin目录,以运行nginx命令)
    ./nginx -t
    ./nginx -t -c /path/to/nginx.conf
    两种新式都可以执行nginx配置文件的正确性,正确会返回结果:
    nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
    nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
    
  2. 重启(修改配置后重新加载生效)
    ./nginx -s reload
  3. 关闭
    ./nginx -s stop 快速停止nginx
    ./nginx -s quit 完整有序的停止nginx
相关标签: nginx