Nginx 의 7 가지 상태
1. Nginx 추적 서비스 시작
Nginx 의 기능 모듈 에는 Nginx 의 기본 접근 상태 정 보 를 기록 하 는 모듈
ngx_http_stub_status_module
이 있 지만 설정 해 야 시작 할 수 있 습 니 다.메모: yum 설치 방식 도 기본적으로 이 모듈 이 설치 되 어 있 습 니 다.# 1. Nginx
[root@shellLab ~]# yum install -y nginx
# 2.
[root@shellLab nginx]# cd /etc/nginx
[root@shellLab nginx]# cat nginx.conf
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
#
location /nginx_status {
stub_status on; #
access_log off; #
}
}
}
[root@shellLab nginx]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
[root@shellLab nginx]# nginx
[root@shellLab nginx]# netstat -lntup
Active 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 :::22 :::* LISTEN 1188/sshd
# 3. curl , Nginx
[root@shellLab nginx]# curl 10.0.0.88/nginx_status
Active connections: 1
server accepts handled requests
1 1 1
Reading: 0 Writing: 1 Waiting: 0
Bash
Copy
2. 스 크 립 트 작성 상태
[root@shellLab scripts]# cat nginx_status.sh
#!/bin/bash
################################################
# Author: alys114
# Blog: blog.alys114.com
# Time: 2018-11-19 09:34:54
# Name: nginx_status.sh
# Version: V1.0
# Description: This is Nginx status check function
################################################
NGINX_URL=$2
NGINX_PORT=$3
[ ! $NGINX_URL ] && {
echo $"USAGE:$0 {active|reading|writing|waiting|accepts|handled|requests} url [port]"
exit 1
}
[ ! $NGINX_PORT ] && {
NGINX_PORT=80
}
NGINX_COMMAND=$1
nginx_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 in
active)
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@shellLab scripts]# curl 10.0.0.88/nginx_status
Active connections: 1
server accepts handled requests
7 7 7
Reading: 0 Writing: 1 Waiting: 0
[root@shellLab scripts]# sh nginx_status.sh handled 10.0.0.88
8
[root@shellLab scripts]# sh nginx_status.sh active 10.0.0.88
1
[root@shellLab scripts]# sh nginx_status.sh requests 10.0.0.88
10
Bash
Copy
Ngnix 상태 추적 지표 분석:
active connections
>> 백 엔 드 에서 시작 하 는 이벤트 연결 수;server accepts handled requests
>> nginx 는 총 [accepts] 개의 연결 을 처리 하여 [handled] 회 악 수 를 성공 적 으로 만 들 었 습 니 다. 총 [requests] 개의 요청 reading
>> nginx 에서 클 라 이언 트 의 Header 정보 수 읽 기;writing
>> nginx 가 클 라 이언 트 에 게 반환 하 는 Header 정보 수;waiting
>> keep - alive 를 켜 면 이 값 은 active – (reading + writing) 와 같 습 니 다. Nginx 는 다음 요청 명령 을 기다 리 고 있 는 상주 연결 을 처리 했다 고 합 니 다.이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
용감한 바로 가기 및 우분투 응용 프로그램안녕하세요 여러분, 이 기사에서는 모든 사이트에서 pwa를 생성하고 실행기 응용 프로그램으로 추가하는 방법을 설명하고 싶습니다. 일부 웹사이트는 PWA로 설치를 허용하지 않지만 유사한 애플리케이션을 원합니다. 1. ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.