一、配置nginx服务器的日志路径

1、编辑conf文件

1
vim /usr/local/nginx/conf/nginx.conf  # 可能路径会有所不同

默认为main格式

1
2
3
4
5
#log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';

#access_log logs/access.log main;

日志生成的到Nginx根目录logs/access.log文件,默认使用“main”日志格式,也可以自定义格式。

2、自定义日志路径

1
2
3
access_log  /var/log/nginx/access.log  main;

error_log /var/log/nginx/error.log;

二、分析nginx日志

1、实时监测日志

1
tail -f  access.log

2、打印列出日志信息

1
cat access.log

3、压缩日志

1
zcat access.zip

如果日志被压缩,需要使用解压并查看日志命令。