--with-http_stub_status_module 这个模块功能是记录nginx基本信息访问状态
1、检查编译是否有这个功能模块。
[root@ 슬레이브 nginx]# /usr/sbin/nginx -V
nginx 버전: nginx/1.8.0
gcc 4.4.7로 구축 20120313(Red Hat 4.4.7-17)(GCC)
2013년 2월 11일 OpenSSL 1.0.1e-fips로 구축
TLS SNI 지원 활성화
인수 구성: --prefix=/usr/local/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path= /var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx/nginx.pid --lock-path= /var/lock/nginx.lock
--user=nginx --group=nginx --with-http_ssl_module --with-http_flv_module --with-http_realip_module --with-http_stub_status_module --with-http_gzip_static_module --http-client-body-temp-path=/var/ tmp/nginx/client/ --http-proxy-temp-path=/var/tmp/nginx/proxy/
--http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --http-scgi-temp-path=/var/ tmp/nginx/scgi --with-pcre
[root@slave nginx]#
2, 在目录下添加server段
##status
서버 {
듣기 80;
server_name status.wolf.com;
위치 / {
stub_status on;
access_log off;
}
}
3、添加호스트
[root@slave nginx] # vi /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.0.203 www.wolf.com bbs.wolf.com blog.wolf.com Wolf.com status.wolf.com
笔记本添加
[root@slave nginx]# vi /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.0.203 www.wolf.com bbs.wolf.com blog.wolf.com Wolf.com status.wolf.com
4、语法检查
[root@slave nginx]# /usr/sbin/nginx -t
nginx: 구성 파일 /etc/nginx/nginx.conf 구문은 괜찮습니다.
nginx: 구성 파일 /etc/nginx/nginx.conf 테스트 성공했습니다
5、重启服务
[root@slave nginx]# /usr/sbin/nginx -s reload
6、测试
浏览器http://status.wolf.com/访问
활성 연결: 5
서버가 처리된 요청 수락
54 54 408
읽기: 0 쓰기: 1 대기: 4
[root@slave nginx]# 컬 상태.wolf.com
활성 연결: 6
서버가 처리된 요청을 수락합니다
55 55 414
읽기: 0 쓰기: 1 대기: 5
7、访问限system
##status
서버 {
듣기 80;
server_name status.wolf.com;
위치 / {
stub_status on;
access_log off;
allow 192.168. 0.0/24;
모두 거부;
}
}
8、访问log说明
활성 연결 – 活跃的连接数weight
서버가 처리된 요청을 수락함 — 总共处理了11989个连接 , 成功创建119 89次握手, 总共处理了11991个请求
읽기 — 读取客户端的连接数.
쓰기 — 响应数据到客户端적数weight
대기 — 开启 keep-alive 的情况下,这个值等于 활성 – (읽기+쓰기), 意思就是Nginx는 已经处理完正에서 等候下一次请求指令的驻留连接.
以上就介绍了 nginx는 信息功能启를 사용하고, 包括了方face的内容,希望对PHP教程有兴趣的朋友有所帮助。