nginx 7 가지 상태
4104 단어 nginx
location /nginx_status {
stub_status on; #
access_log off; #
}
}root@web01 nginx]# nginx -tnginx: the configuration file /etc/nginx/nginx.conf syntax is oknginx: configuration file /etc/nginx/nginx.conf test is successful[root@web01 nginx]# nginx [root@web01 nginx]# netstat -lntupActive Internet connections (only servers)Proto Recv - Q Send - Q Local Address Foreign Address State PID / Program name tcp 0 0 0.0.0.0: 80 0.0.0.0: LISTEN 1405 / nginx tcp 0 0 0.0.0.0: 22 0.0.0.0: LISTEN 1188 / sshd tcp 0 0 0::: 22:::: * LISTEN 1188 / sshd 3. curl 검 측, 현재 Nginx 의 상태 정보 획득 [root@web01 nginx]# curl 10.0.0.7/nginx_statusActive connections: 1 server accepts handled requests1 1 1 Reading: 0 Writing: 1 Waiting: 0 BashCopy [ ! $NGINX_URL ] && {echo $"USAGE:$0 {active|reading|writing|waiting|accepts|handled|requests} url [port]"exit 1 }
[ ! $NGINX_PORT ] && {NGINX_PORT=80}
NGINX_COMMAND=$1nginx_active(){/usr/bin/curl -s "http://$NGINX_URL:"$NGINX_PORT"/nginx_status/" |awk '/Active/ {print $NF}'}nginx_reading(){/usr/bin/curl -s "http://$NGINX_URL:"$NGINX_PORT"/nginx_status/" |awk '/Reading/ {print $2}'}nginx_writing(){/usr/bin/curl -s "http://$NGINX_URL:"$NGINX_PORT"/nginx_status/" |awk '/Writing/ {print $4}'}nginx_waiting(){/usr/bin/curl -s "http://$NGINX_URL:"$NGINX_PORT"/nginx_status/" |awk '/Waiting/ {print $6}'}nginx_accepts(){/usr/bin/curl -s "http://$NGINX_URL:"$NGINX_PORT"/nginx_status/" |awk 'NR==3 {print $1}'}nginx_handled(){/usr/bin/curl -s "http://$NGINX_URL:"$NGINX_PORT"/nginx_status/" |awk 'NR==3 {print $2}'}nginx_requests(){/usr/bin/curl -s "http://$NGINX_URL:"$NGINX_PORT"/nginx_status/" |awk 'NR==3 {print $3}'}case $NGINX_COMMAND inactive)nginx_active;;;reading)nginx_reading;;;writing)nginx_writing;;;waiting)nginx_waiting;;;accepts)nginx_accepts;;;handled)nginx_handled;;;requests)nginx_requests;;;*)echo $"USAGE:$0 {active|reading|writing|waiting|accepts|handled|requests} url [port]"esac
2. 테스트 해 보 겠 습 니 다.
[root@web01 scripts]# curl 10.0.0.7/nginx_statusActive connections: 1 server accepts handled requests7 7 7 Reading: 0 Writing: 1 Waiting: 0 [root@web01 scripts]# sh nginx_status.sh handled 10.0.0.78[root@web01 scripts]# sh nginx_status.sh active 10.0.0.71[root@web01 scripts]# sh nginx_status. sh requests 10.0.0.710BashCopyNgnix 상태 추적 지표 분석: active connections > > 백 엔 드 에 대한 활동 연결 수; server accepts handled requests > > nginx 는 모두 [accepts] 개의 연결 을 처리 하여 [handled] 회 악 수 를 성공 적 으로 만 들 었 습 니 다. 총 [requests] 개의 요청 을 처 리 했 습 니 다. writing > > nginx 클 라 이언 트 에 게 되 돌아 오 는 Header 정보 수; waiting > > keep - alive 를 켜 면 이 값 은 active – (reading + writing) 와 같 습 니 다. Nginx 는 다음 요청 명령 을 기다 리 고 있 는 상주 연결 을 처리 했다 는 뜻 입 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.