nginx内建了一个状态页,可以了解nginx的状态以及监控nginx。
前提是在编译的时候需要添加以下模块
--with-http_stub_status_module
可以使用 nginx -V 来查看是否安装了改模块
1. 启用nginx status配置
在nginx.conf或者主机配置文件中的server下面添加
1
|
location /status { stub_status on; access_log off; }
|
2. 重启nginx
请依照你的环境重启你的nginx
1
|
# service nginx restart
|
3. 打开status页面
1
2
3
4
5
|
# curl http://127.0.0.1/status
Active connections: 11921
server accepts handled requests
11989 11989 11991
Reading: 0 Writing: 7 Waiting: 42
|
或者直接浏览器打开 http://网站域名或IP/status
4. nginx status详解
active connections – 活跃的连接数量
server accepts handled requests — 总共处理了11989个连接 , 成功创建11989次握手, 总共处理了11991个请求
reading — 读取客户端的连接数.
writing — 响应数据到客户端的数量
waiting — 开启 keep-alive 的情况下,这个值等于 active – (reading+writing), 意思就是 Nginx 已经处理完正在等候下一次请求指令的驻留连接.