nginx 설정 상태 모듈 오류 보고

[root@web02 nginx-1.6.3]# /application/nginx/sbin/nginx  -t

nginx: [emerg] invalid number of arguments in "stub_status" directive in /application/nginx-1.6.3/conf/extra/status.conf:4nginx: configuration file /application/nginx-1.6.3/conf/nginx.conf test faile
검사 / 응용 프로그램 / nginx / sbin / nginx - V
nginx version: nginx/1.6.3built by gcc 4.4.7 20120313 (Red Hat 4.4.7-23) (GCC) TLS SNI support enabledconfigure arguments: --prefix=/application/nginx-1.6.3 --user=www --group=www --with-http_stub_status_module --with-http_ssl_module
없 으 면 -- with - httpstub_status_module 모듈 은 대응 하 는 디 렉 터 리 에 설치 하여 컴 파일 설치 3 부작 을 실행 해 야 합 니 다. / configure – with - httpstub_status_module make && make install
[root@web02extra] \ # cat www. conf server {listen 80; server name 에 대응 하 는 도 메 인 이름, location / {root html / www; index index. html index. htm;} \ # 이것 이 바로 켜 야 할 모니터링 모듈 입 니 다 \ # 지정 한 server 탭 에 가입 하 는 것 이 도 메 인 이름 location / nginx status {stub status on; access log off; \ # 접근 제한 추가
allow IP 주소;
allow IP 주소;
deny all
      }
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
}

           

    [root@web02 extra]# /application/nginx/sbin/nginx  -s reload

도 메 인 이름 / nginx status Active connections: 2 server accepts handled requests 74 111 Reading: 0 Writing: 1 Waiting: 1
Active connections: 백 엔 드 에 대한 활동 연결 수. server accepts handled requests: Nginx 는 총 74 개의 연결 을 처리 하여 74 번 의 악 수 를 성공 적 으로 만 들 었 습 니 다. (중간 에 실패 하지 않 았 음 을 증명 합 니 다)총 111 개의 요청 을 처 리 했 습 니 다. Reading: Nginx 가 클 라 이언 트 의 Header 정보 수 를 읽 었 습 니 다. Writing: Nginx 가 클 라 이언 트 에 게 돌아 온 Header 정보 수. Waiting: keep - alive 를 열 었 을 때 이 값 은 active – (reading + writing) 와 같 습 니 다. Nginx 가 처리 되 었 고 다음 요청 명령 의 상주 연결 을 기다 리 고 있다 는 뜻 입 니 다.

좋은 웹페이지 즐겨찾기