• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

关闭

返回栏目

关闭

返回服务器栏目

90 - Nginx - 命令

作者:

贺及楼

成为作者

更新日期:2024-05-07 15:40:58

命令 解释
nginx -h 帮助
nginx -? 帮助
nginx -v 看版本号
nginx -V 看版本号+看包含的编译安装的组件
sudo nginx -t 检测nginx.conf文件是否没有语法错误,看见最后2行ok、successful
nginx -s quit 优雅的停止 shut down gracefully 注释1
nginx -s reload 重启 注释2
nginx -s reopen 利用reopen信号可以使nignx进程重新打开日志文件, 以便实现日志分割的效果。
service nginx -h 帮助
service nginx -? 帮助
service nginx -v 看版本号
service nginx -V 看版本号+看包含的编译安装的组件
service nginx configtest 检测nginx.conf文件是否没有语法错误,看见最后2行ok、successful
service nginx status 看运行情况
service nginx start 开启
service nginx stop 停止 shut down quickly
service nginx restart 重启
service nginx reload 重启 注释2
systemctl -h nginx 帮助
systemctl -? nginx 帮助
systemctl -v nginx 看版本号
systemctl -V nginx 看版本号+看包含的编译安装的组件
systemctl config nginx 检测nginx.conf文件是否没有语法错误,看见最后2行ok、successful
systemctl status nginx 看运行情况
systemctl start nginx 开启
systemctl stop nginx 停止 shut down quickly
systemctl quit nginx 优雅的停止 shut down gracefully 注释1
systemctl restart nginx 重启
systemctl reload nginx 重启 注释2
  1. 注释1:与stop信号的作用类似, quit信号作用也是用于停止nginx服务, quit信号和stop信号的区别在于, nignx进程收到stop信号以后会立即停止服务, 而收到quit信号后, 不会再接收新的请求, 但是会先处理完已经接受的链接请求, 处理完这些请求之后再停止服务,这种停止方式被称之为"优雅的停止"
  2. 注释2reload信号的作用就是在不停止服务的情况下重载配置文件, 比如, nginx正在正常的提供服务, 此时,管理员修改了nginx.conf文件中的配置指令, 管理员希望新的配置立刻生效, 但是又不希望重启nginx服务, 此时就可以使用nginx -s reload命令重载配置文件, 以便在不重启nginx的情况下载入新的配置, 同时避免了因重启而造成的服务中断。

service nginx status 看运行情况

  1. Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
  1. 重定向至 /bin/systemctl status nginx.service
  2. nginx.service - The nginx HTTP and reverse proxy server
  3. Loaded: loaded (/usr/lib/systemd/system/nginx.service; disabled; vendor preset: disabled)
  4. Active: active (running) since Tue 2022-08-16 16:44:32 CST; 16h ago # 最近启动时间、持续时长
  5. Process: 85064 ExecStartPre=/usr/bin/rm -f /run/nginx.pid (code=exited, status=0/SUCCESS)
  6. Process: 85066 ExecStartPre=/usr/sbin/nginx -t (code=exited, status=0/SUCCESS)
  7. Process: 85068 ExecStart=/usr/sbin/nginx (code=exited, status=0/SUCCESS)
  8. Main PID: 85069 (nginx) # 主进程
  9. Tasks: 17
  10. Memory: 22.1M
  11. CGroup: /system.slice/nginx.service
  12. ├─85069 nginx: master process /usr/sbin/nginx # 主进程
  13. ├─85070 nginx: worker process # 子进程
  14. ├─85071 nginx: worker process
  15. ├─85072 nginx: worker process
  16. ├─85073 nginx: worker process
  17. ├─85074 nginx: worker process
  18. ├─85075 nginx: worker process
  19. ├─85076 nginx: worker process
  20. ├─85077 nginx: worker process
  21. ├─85078 nginx: worker process
  22. ├─85079 nginx: worker process
  23. ├─85080 nginx: worker process
  24. ├─85081 nginx: worker process
  25. ├─85082 nginx: worker process
  26. ├─85083 nginx: worker process
  27. ├─85084 nginx: worker process
  28. └─85085 nginx: worker process
  29. # 下面最近4句操作
  30. 8 16 16:44:31 用户名 systemd[1]: Starting The nginx HTTP and reverse proxy server...
  31. 8 16 16:44:31 用户名 nginx[85066]: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
  32. 8 16 16:44:31 用户名 nginx[85066]: nginx: configuration file /etc/nginx/nginx.conf test is success>
  33. 8 16 16:44:32 用户名 systemd[1]: Started The nginx HTTP and reverse proxy server.

nginx -v 版本信息

  1. [root@server1 ~]# nginx -v
  2. nginx version: nginx/1.16.1

nginx -V 可以看有什么组件

  1. 在编译安装时,设置一些编译选项,比如
  2. 安装目录、各种文件的目录、编译器选项等等
  3. 4个部分 - Nginx - 二进制可执行文件
  4. 4个部分 - Nginx.conf
  5. 4个部分 - access.log访问日志 - 记录每一条http请求
  6. 4个部分 - error.log 错误日志 - 定位问题
  1. [root@server1 ~]# nginx -V
  2. nginx version: nginx/1.16.1
  3. built by gcc 4.8.5 20150623 (Red Hat 4.8.5-11) (GCC)
  4. built with OpenSSL 1.0.1e-fips 11 Feb 2013
  5. TLS SNI support enabled
  6. configure arguments: --prefix=/usr/local/nginx --with-http_realip_module --with-http_image_filter_module=dynamic --with-http_ssl_module