NGINX 의 상태 모듈 실전 의 5

1. NGINX 에 상태 모듈 이 설치 되 어 있 는 지 확인
[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 

좋은 웹페이지 즐겨찾기