官方信息:http://nginx.org/en/docs/http/ngx_http_stub_status_module.html
stub_status模块需要手动开启,具体开启方法如下:
[root@localhost src]# cd nginx-1.20.1
[root@localhost nginx-1.20.1]# ls
auto CHANGES CHANGES.ru conf configure contrib html LICENSE man README src
[root@localhost nginx-1.20.1]# ./configure --with-http_stub_status_module # 1、执行命令
[root@localhost nginx-1.20.1]# make && make install # 2、执行命令
安装完必须将nginx的进程kill掉重新启动nginx才能生效
安装完必须将nginx的进程kill掉重新启动nginx才能生效
安装完必须将nginx的进程kill掉重新启动nginx才能生效
[root@localhost nginx-1.20.1]# ps -C nginx 查看nginx进程
PID TTY TIME CMD
1775 ? 00:00:00 nginx
1776 ? 00:00:00 nginx
1777 ? 00:00:00 nginx
1778 ? 00:00:00 nginx
1779 ? 00:00:00 nginx
1780 ? 00:00:00 nginx
1781 ? 00:00:00 nginx
1782 ? 00:00:00 nginx
1783 ? 00:00:00 nginx
1784 ? 00:00:00 nginx
1785 ? 00:00:00 nginx
[root@localhost nginx-1.20.1]# pkill nginx #将nginx进程kill掉
修改配置文件,添加stub_status模块
执行nginx -t
执行nginx -s reload
最后执行curl 127.0.0.1/nginx-status检验是否开启成功
安装SSL模块:./configure --prefix=/usr/local/nginx --with-http_ssl_module
返回各数据项说明:
Active connections: 当前nginx正在处理的活动连接数.
Server accepts handled requests request_time: nginx总共处理了13057 个连接,成功创建13057 握手(证明中间没有失败的),总共处理了11634 个请求,总共请求时间2230854。
Reading: nginx读取到客户端的Header信息数.
Writing: nginx返回给客户端的Header信息数.
Waiting: 开启keep-alive的情况下,这个值等于 active – (reading + writing),意思就是nginx已经处理完成,正在等候下一次请求指令的驻留连接。
所以,在访问效率高,请求很快被处理完毕的情况下,Waiting数比较多是正常的.如果reading +writing数较多,则说明并发访问量非常大,正在处理过程中。