Nginx模块
Nginx官方模块
第三方模块
Nginx模块sub_status
查看已安装模块
[root@Nginx ~]# nginx -V
模块介绍
–with-http_sub_status_module
处理当前nginx连接状态 用于监控当前nginx连接信息
配置模块
[root@Nginx ~]# vim /etc/nginx/conf.d/default.conf
5 #charset koi8-r;
6 #access_log /var/log/nginx/host.access.log main;
7
8 location /mystatus{ //加入模块
9 stubu_status;
10 }
11 location / {
12 root /usr/share/nginx/html;
13 index index.html index.htm;
14 }
检查语法
[root@Nginx ~]# nginx -s reload -c /etc/nginx/nginx.conf
重载服务
[root@Nginx ~]# nginx -s reload -c /etc/nginx/nginx.conf
验证
访问:http://192.168.0.77/mystatus
Active connections: 6 //nginx当前活跃的连接数
server accepts handled requests
15 15 16 //总的请求数
Reading: 0 Writing: 1 Waiting: 5 //建立连接的数