首页 > 运维 > linux运维 > 正文

ngix_http_stub_status_module

巴扎黑
发布: 2017-06-23 14:13:04
原创
1610 人浏览过

1.ngx_http_stub_status_module 是一个 Nginx 的内置 HTTP 模块,该模块可以提供 Nginx 的状态信息。默认情况下这个模块是不被编译进来的,所以在编译 Nginx 时要指定加载该模块--with-http_stub_status_module

2.首先检查nginx是否安装ngx_http_stub_status_module模块

如果没有安装,需要重新编译。

# nginx  -V | grep http_stub   

ngx_http_stub_status_module (static)

# nginx   -v

Tengine version: Tengine/2.1.1 (nginx/1.6.2)

 

3,首先在nginxserver段配置对应的信息

server {

    listen  80;

    server_name  xxx;

    location /<strong>ngx_status   </strong>自定义模块名称

    {

        stub_status on; 开启状态访问

        access_log off;

    #allow all;   可以设置需要那些主机访问

    #deny all;

    }

}

4,重新加载nginx,访问测试

# service nginx reload

 

curl 127.0.0.1:80/<strong>ngx_status</strong>

Active connections: 135  

server accepts handled requests request_time

 13711907 25715823 5175039843

Reading: 0 Writing: 12 Waiting: 123

<strong>说明:</strong>

<strong>Active connections: 135</strong>  #//正在活跃的连接数

server accepts handled requests  

13711907 25715823 5175039843          #处理了13711907次连接,创建25715823次握手,共5175039843请求。<br>

<code><strong>Reading: 0 Writing: 1 Waiting: 1  </strong>        Reading: 0 Writing: 1 Waiting: 1  # Reading:        读取客户端header数,Writing:返回客户端header数,Waiting:请求完成,等待下一次连接。

 <br>
登录后复制

以上是ngix_http_stub_status_module的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!