nginx的stub_status

官方信息: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数较多,则说明并发访问量非常大,正在处理过程中。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值