使用logrotate做nginx日志轮询

By | 2013 年 7 月 6 日

logrotate看名字就知道是专门做日志轮询的,只把任务配置放在/etc/logrotate.d/下,任务就会自动完成,而且无需安装,系统自带,比较推荐使用.

[root@srv logrotate.d]# vi /etc/logrotate.d/nginx

/usr/local/nginx/logs/www.willko.cn.log /usr/local/nginx/logs/nginx_error.log {
notifempty
daily
sharedscripts
postrotate
/bin/kill -USR1 `/bin/cat /usr/local/nginx/nginx.pid`
endscript

}

多个日志以空格分开,
notifempty 如果日志为空则不做轮询
daily 每天执行一次
postrotate 日志轮询后执行的脚本

这样,每天都会自动轮询,生成nginx.log.1-n

发表回复

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据