作为IT工程师,以下是针对Nginx服务器的性能监控和故障排查的专业工具和方法:
Nginx Status模块
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
Nginx Log分析
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for" '
'rt=$request_time uct="$upstream_connect_time" '
'urt="$upstream_response_time"';
/var/log/nginx/error.log
实时监控工具
ngxtop
:实时监控Nginx请求
bash
pip install ngxtop
ngxtop -l /var/log/nginx/access.log
goaccess
:可视化日志分析
bash
goaccess /var/log/nginx/access.log -o report.html --log-format=COMBINED
系统级监控
htop
/top
:监控CPU/内存使用iftop
:网络流量监控dstat
:综合系统资源监控专业监控方案
工作进程配置
worker_processes auto; # 通常设置为CPU核心数
worker_connections 1024; # 每个worker最大连接数
缓冲与超时设置
client_body_buffer_size 10K;
client_header_buffer_size 1k;
client_max_body_size 8m;
keepalive_timeout 30;
Gzip压缩
gzip on;
gzip_types text/plain text/css application/json application/javascript;
连接问题
netstat -anp | grep nginx
查看连接状态ss -lntp | grep nginx
检查监听端口性能瓶颈分析
ab
/wrk
压力测试:
bash
ab -n 1000 -c 100 http://yoursite.com/
$request_time
日志字段配置检查
nginx -t
测试配置语法nginx -T
查看完整配置调试模式
nginx
error_log /var/log/nginx/error.log debug;
strace
跟踪进程:
bash
strace -p $(pgrep -f "nginx: worker" | head -1)
动态追踪
perf
:Linux性能分析工具SystemTap
:内核级追踪TCP堆栈调优
/proc/sys/net/ipv4/
下的TCP参数net.core.somaxconn
等参数内核参数调优
fs.file-max
:最大文件描述符net.ipv4.tcp_tw_reuse
:TIME_WAIT重用通过以上工具和方法,您可以全面监控Nginx性能,快速定位并解决各种故障问题。