Nginx信号指令

作者: pijh | 来源:发表于2018-05-29 16:03 被阅读7次

常见 nginx 信号指令,官网文档

常见指令

TERM, INT Quick shutdown
QUIT Graceful shutdown
KILL Halts a stubborn process
HUP Configuration reload
Start the new worker processes with a new configuration
Gracefully shutdown the old worker processes
USR1 Reopen the log files
USR2 Upgrade Executable on the fly
WINCH Gracefully shutdown the worker processes

Here’s how to send the QUIT (Graceful Shutdown) signal to the NGINX master process:

$ kill -QUIT $( cat /usr/local/nginx/logs/nginx.pid )

相关文章

  • Nginx信号指令

    常见 nginx 信号指令,官网文档 常见指令 Here’s how to send the QUIT (Grac...

  • Linux_246_Nginx命令行参数解析

    1、nginx启停的指令,-s参数指的是给nginx进程发送某种信号nginx # 初次启动,直接输入nginx...

  • Nginx

    Nginx的编译安装(Linux) Nginx部署 Nginx的架构 nginx进程管理:信号

  • Nginx负载均衡配置介绍

    目录 Nginx概述 Nginx调度算法 Nginx指令使用 Nginx负载均衡配置参数 1. Nginx概述 N...

  • Nginx常用指令配置

    Nginx常用指令配置 先cd进入nginx目录下 启动 start nginx 停止 nginx -s stop...

  • Nginx 使用 logrotate 进行日志滚动

    Nginx 日志滚动(官方) 向 Nginx 主进程发送 USR1 信号。 USR1 信号量被 Nginx 自定义...

  • 一、Nginx的安装

    一、linux下安装nginx: 2、常用指令nginx -s stop 快速关闭Nginx,可能不保...

  • Nginx指令阶段和常见错误总结

    Nginx指令阶段 因为nginx执行是按阶段执行的,我们一般的程序都是按顺序执行的。nginx指令一般是分布在不...

  • Nginx常用配置

    Nginx常用命令 启动 Nginx 停止 Nginx Nginx 重载配置 上述是采用向 Nginx 发送信号的...

  • linux 信号

    SIGHUP挂起信号 SIGINT 中断信号 SIGQUIT 退出信号 SIGILL 非法指令 SIGTRAP 跟...

网友评论

    本文标题:Nginx信号指令

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