首页 帮助中心 香港云服务器 Nginx状态监控如何启用?
Nginx状态监控如何启用?
时间 : 2022-12-05 12:03:05 编辑 : 华纳云 阅读量 : 198

Nginx状态监控如何启用?
   1. 编译Nginx添加http_stub_status_module
  编译Nginx的时候添加参数:--with-http_stub_status_module
  cd nginx-{version}/
  ./configure  --prefix=/opt/nginx --with-http_stub_status_module
  --with-http_ssl_module
  make && make install
  2. 启用nginx status配置
  修改Nginx配置文件nginx.conf,在HTTP段中添加
  vi /opt/nginx/conf/nginx.conf
  server
  {
  listen 80;
  server_name localhost;
  location /nginx_status {                  #主要是这里代表根目录显示信息
  stub_status on;
  access_log  off;
  }
  }
  3. 打开status页面
  浏览器访问监控页面地址http://{your IP}/nginx-status,显示如下
  Active connections: 2
  server accepts handled requests
  8 8 33
  Reading: 0 Writing: 1 Waiting: 1
  解析:
  Active connections    //当前 Nginx 正处理的活动连接数。
  server accepts handledrequests //总共处理了8 个连接 , 成功创建 8 次握手,总共处理了33个请求。
  Reading //nginx 读取到客户端的 Header 信息数。
  Writing //nginx 返回给客户端的 Header 信息数。
  Waiting //开启 keep-alive 的情况下,这个值等于 active – (reading + writing),意思就是 Nginx 已经处理完正在等候下一次请求指令的驻留连

华纳云 推荐文章
Apache配置虚拟主机实例 Windows2008 R2系统Server Core常用命令 服务器Linux系统重启和关机教程 Windows2008系统执行bat脚本失败返回0x1 Linux系统建立虚拟内存教程 Ubuntu 开启远程登录 SSH 的安装和配置 CentOS中快速安装docker具体方法 win2008 R2与sql 2005、2008运行asp的时候速度缓慢的解决方法 详解CentOS 7 引导过程与服务管理 apache 配置模拟外网环境开发网站的方法
客服咨询
7*24小时技术支持
技术支持
渠道支持