nginx的状态监控,主要是指nginx的进程数,创建的tcp连接数,当前等待的连接数等。对nginx的状态监控,有助于排查nginx运行中遇到的问题,快速定位。
监控主要有两种方式,页面展示和通过一些命令来进行。
页面配置
此方法需要nginx安装http_stub_status_module模块,这个模块是nginx自带的。但是默认没有安装,需要用户指定安装。可以通过命令查看是否有安装。
- [root@izbp14wmlq6ajvhexzq3q0z sbin]# /usr/local/nginx/sbin/nginx -V
- nginx version: nginx/1.12.2
- built by gcc 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC)
- configure arguments: --with-http_stub_status_module
复制代码通过configure arguments可以看到上面是有安装 如果未安装,在安装的时候,只需要指定 - ./configure --with-http_stub_status_module
复制代码即可 然后修改配置文件nginx.conf,在server块中增加 - location /nginx_status {
- # Turn on nginx stats
- stub_status on;
- # I do not need logs for stats
- access_log off;
- # Security: Only allow access from 192.168.1.100 IP #
- allow 115.192.86.239;
- # Send rest of the world to /dev/null #
- #deny all;
- }
复制代码然后重启执行 - [root@izbp14wmlq6ajvhexzq3q0z conf]# /usr/local/nginx/sbin/nginx -s relaod
复制代码即可 页面访问http://127.0.0.1/nginx_status - Active connections: 44
- server accepts handled requests
- 4974 4974 291733
- Reading: 0 Writing: 1 Waiting: 43
复制代码ctive connections:与后端建立的服务连接数 server accepts handled requests:Nginx总共处理了4974个连接,成功创建了4974次握手,总共处理了291733个请求 Reading:nginx读取到客户端的Header信息数 Writing:nginx返回到客户端的Header信息数 Waiting:开启Keep-alive的情况下,这个值等于 Active -(Reading + Writing)。表示nginx已经处理完成,正在等候下次一次请求的连接数。 说明:如果Reading + Writing数量比较高,表示当前并发很大;如果Waiting较大,表示处理的很快,已经在等待之后的请求了。
命令查看
1 查看哪些ip正在连接 - [root@izbp14wmlq6ajvhexzq3q0z ~]# netstat -an
- Active Internet connections (servers and established)
- Proto Recv-Q Send-Q Local Address Foreign Address State
- tcp 0 0 0.0.0.0:6379 0.0.0.0:* LISTEN
- tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN
- tcp 0 0 0.0.0.0:4369 0.0.0.0:* LISTEN
- tcp 0 0 0.0.0.0:8082 0.0.0.0:* LISTEN
- tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
- tcp 0 0 0.0.0.0:15672 0.0.0.0:* LISTEN
- tcp 0 0 0.0.0.0:25672 0.0.0.0:* LISTEN
- tcp 0 0 172.16.135.185:8082 118.31.52.247:33466 TIME_WAIT
- tcp 0 0 172.16.135.185:49354 111.230.187.248:62523 ESTABLISHED
- tcp 0 0 172.16.135.185:8082 118.31.52.247:33388 TIME_WAIT
- tcp 0 0 172.16.135.185:40114 100.100.45.158:80 ESTABLISHED
复制代码2 查看当前nginx运行状态 - [root@izbp14wmlq6ajvhexzq3q0z conf]# netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'
- CLOSE_WAIT 2
- ESTABLISHED 52
- TIME_WAIT 53
复制代码这是在我自己的服务器上运行的,显示的状态只有:CLOSE_WAIT、ESTABLISHED、TIME_WAIT。实际上这里的状态会有很多种。 CLOSE_WAIT:表示被动关闭 ESTABLISHED:当前并发连接数 TIME_WAIT:主动关闭,处理完毕,等待超时结束的连接数
3 查看nginx运行进程数 - [root@izbp14wmlq6ajvhexzq3q0z ~]# ps -ef | grep nginx | wc -l
- 3
复制代码4 查看web服务器进程数 - [root@izbp14wmlq6ajvhexzq3q0z ~]# ps -ef | grep httpd | wc -l
- 1
复制代码5 查看httpd占用内存的平均数 - [root@izbp14wmlq6ajvhexzq3q0z ~]# ps aux|grep -v grep|awk '/httpd/{sum+=$6;n++};END{print sum/n}'
- 956
复制代码6 查看nginx中访问前10的ip - [root@izbp14wmlq6ajvhexzq3q0z ~]# awk '{print $1}' /usr/local/nginx/logs/access.log | sort
- | uniq -c | sort -nr -k1 | head -n 10
- 35343 115.192.86.239
- 59 47.94.157.167
- 3 60.191.52.254
- 2 85.211.202.152
- 2 80.82.70.187
- 2 156.222.245.199
- 2 156.203.252.30
- 2 103.41.127.142
- 1 94.243.246.80
- 1 89.40.84.154
复制代码 格式:awk '{print $1}' 日志文件路径 | sort | uniq -c | sort -nr -k1 | head -n 10
|