标签:lock html_ 介绍 blank off lan and 有一个 read
可以单独创建一个虚拟主机来配置 Nginx 状态信息功能
[root@localhost conf]# vim vhosts/status.abc.conf
server {
listen 80;
server_name status.abc.com;
location / {
stub_status on; # 打开状态信息开关
access_log off;
allow 192.168.153.0/24 # 设置允许访问的 IP 段
deny all; # 设置禁止访问的 IP 段,all 代表除了允许的 IP 以外的所有 IP 都拒绝访问
}
}
使用 ab 压力测试工具模拟用户并发访问网站:
yum -y install httpd-tools
ab -c5000 -n50000 http://www.abc.com/
修改客户端 hosts解析文件,在模拟访问网站的同时访问 http://status.abc.com/
Active connections: 1005
server accepts handled requests
152111 152111 149869
Reading: 0 Writing: 1 Waiting: 1004
数值说明:
请求丢失数 = accepts - server,可以看出本次状态显示没有丢失请求
在开启 keep-alive 的情况下,Waiting = Active connections - (Reading + Writing)
标签:lock html_ 介绍 blank off lan and 有一个 read
原文地址:https://www.cnblogs.com/wushuaishuai/p/9348841.html