码迷,mamicode.com
首页 > Web开发 > 详细

Nginx性能统计模块http_stub_status_module使用

时间:2018-01-17 00:41:50      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:blog   install   bin   进入   status   源码   加载   kill   color   

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使用

标签:blog   install   bin   进入   status   源码   加载   kill   color   

原文地址:https://www.cnblogs.com/sunjianguo/p/8298318.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!