Nginx性能统计模块http_stub_status_module使用

Posted sun111

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx性能统计模块http_stub_status_module使用相关的知识,希望对你有一定的参考价值。

1、进入nginx源码目录,重新配置编译参数

./configure --prefix=/usr/local/nginx/ --with-http_stub_status_module

2、重新编译安装

make && make install

3、重启nginx

pkill -9 nginx
/usr/local/nginx/sbin/nginx

4、为了便于在网页上查看统计信息,在配置文件nginx.conf中加入

location /status {
      stub_status on;
      access_log off;
}

5、重新加载nginx

/usr/local/nginx/sbin/nginx -s reload

6、页面查看地址:http://ip/status

统计结果类似:

Active connections: 2001 
server accepts handled requests
 303662 303484 209204 
Reading: 0 Writing: 1073 Waiting: 928 

7、为了使nginx能够相应足够多的请求,要保证系统可同时打开文件数量足够多

ulimit -n 20480

 

以上是关于Nginx性能统计模块http_stub_status_module使用的主要内容,如果未能解决你的问题,请参考以下文章

Nginx模块开发入门

(超简单)Nginx状态统计模块

nginx模块

nginx统计模块安装及用ab工具压力测试nginx

Nginx

Nginx网站服务