在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Nginx 的 stub_status 模块用于查看 Nginx 的基本状态信息。 模块实现的功能 通过这个模块,可以看到如下的 Nginx 状态信息: Active connections: 2 server accepts handled requests 62 62 102 Reading: 0 Writing: 1 Waiting: 0 其中:
在访问频率高、请求较快处理完毕时,Waiting 较大是正常的;若 Reading + Writing 较大,则说明并发访问数较大。 安装模块 这个模块 Nginx 源码已包含在内,但默认不会编译进来,需要启用这条编译参数: --with-http_stub_status_module 启用模块 要启用这个模块,只需要在站点配置写入一行: stub_status on; 以我的配置为例: location = /status/ { stub_status on; } 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持极客世界。 |
请发表评论