NGINX 의 상태 모듈 실전 의 5
[root@localhost nginx-1.6.3]# ./sbin/nginx -V #--with-http_stub_status_module
nginx version: nginx/1.6.3
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-18) (GCC)
TLS SNI support enabled
configure arguments: --user=www --group=www --with-http_ssl_module --prefix=/app/nginx-1.6.3 --with-http_stub_status_module
2 、 이 모듈 불 러 오기 설정
[root@localhost nginx-1.6.3]# vi conf/vhost/default.conf
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
location /nginx_status { #nginx URL
stub_status on; #
access_log off; # ,
allow 127.0.0.1; #
deny all; #
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
3. Nginx 모니터링 상태 값 가 져 오기
[root@localhost nginx-1.6.3]# curl http://127.0.0.1/nginx_status
Active connections: 1
server accepts handled requests
2 2 2
Reading: 0 Writing: 1 Waiting: 0
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Nginx access 로그 최적화1. 로그 절단 설정 2. 필요 하지 않 은 방문 로 그 를 기록 하지 않 습 니 다. 3. 로그 에 접근 할 수 있 는 권한 설정...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.