logrotate进行nginx的日志轮转
logrotate是linux下自带的日志轮询工具。默认情况下,在/etc/cron.daily/目录下有一个logrotate脚本,我们只要把nginx的轮询脚本放在/etc/logrotate.d/下即可。
1# cat /etc/logrotate.d/nginx
2/usr/local/nginx/logs/*.log {
3daily
4missingok
5rotate 7
6compress
7delaycompress
8notifempty
9sharedscripts
10postrotate
11 kill -USR1 `cat /usr/local/nginx/logs/nginx.pid`
12endscript
13}
注:同样可以发送HUP信号来达到日志轮询,即:
1/bin/kill -HUP `/bin/cat /usr/local/nginx/logs/nginx.pid`
具体每行的参数的含义如下:
- 指定nginx的日志路径,可以通过 * 通配,可以指定多个文件名
- 每天执行一次日志轮询
- 即使日志不存在也继续执行
- 保留7个备份
- 开启日志压缩
- 在下一次轮询时再进行日志压缩
- 文件日志为空时不进行轮询
- 有多个日志需要轮询时,只执行一次脚本
- 最后三行表示日志轮询之后要执行的脚本。postrotate/prerotate和endscript必须成对,缺一不可。
如果想在日志后面加上日期,可以在上面再增加dateext参数:
dateext:日志rotate后再后面加日期,例如:access.log轮转后会变为access.log-20130803
测试配置是否生效,可以使用如下命令测试:
1/usr/sbin/logrotate -f /etc/logrotate.conf
看看/usr/local/nginx/logs/下面是否有类似access.log-20130804的log生成 。
后记:
据说下面的脚本也可以实现,未具体验证:
1# cat /etc/logrotate.d/nginx
2/logs/nginx/error.log
3/logs/nginx/image.361way.access.log
4/logs/nginx/www.361way.access.log
5{
6 daily
7 missingok
8 rotate 30
9 start 1
10 compress
11 copytruncate
12 notifempty
13 sharedscripts
14 postrotate
15 /usr/bin/killall -HUP syslogd 2> /dev/null || true
16 create 0640 root root
17 endscript
18}
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/logrotate-nginx/2672.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.