我是的十八簿 发表于 2024-9-11 14:59:13

云服务器安装nginx的stub_status模块

# vim /usr/local/nginx/conf/nginx.conf
47 location /status {
48 stub_status on;
49 }
# 检查语法,出现syntax is ok表示配置文件正确
# /usr/local/nginx/sbin/nginx -t
# 启动服务
# /usr/local/nginx/sbin/nginx
# ss -tlnp | grep :80
LISTEN 0 128 *:80
# 访问监控页面
# curl http://192.168.4.100/status
Active connections: 1
server accepts handled requests
1 1 1
Reading: 0 Writing: 1 Waiting: 0
# Activeconnections:当前客户端与nginx之间的连接数。它等于下面Reading / Writing/ Waiting之和
# accepts:自nginx启动之后,客户端访问的总量
# handled:自nginx启动之后,处理过的客户端连接总数。
# requests:自nginx启动之后,处理过的客户端请求总数。
# Reading:正在读取HTTP请求头部的连接总数。
# Writing:正在向客户端发送响应的连接总数。
# Waiting:空闲连接。
# 使用工具向服务器发起多个请求
# yum install -y httpd-tools
# 一共发1000个请求,每次并发数100
# ab -n 1000 -c 100 http://192.168.4.100/status
# curl http://192.168.4.100/status
Active connections: 1
server accepts handled requests
1040 1040 1004
Reading: 0 Writing: 1 Waiting: 0
页: [1]
查看完整版本: 云服务器安装nginx的stub_status模块