码迷,mamicode.com
首页 > 其他好文 > 详细

使用logrotate进行日志分割及滚动处理

时间:2015-04-01 15:38:37      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

linux server上服务一般持续长久运行,以致服务的日志文件随着时间越来越大,如果日志处理得不好甚至有可能占满磁盘。幸好找到了logrotate这个程序来处理。

下面是安装配置过程

zypper in -y logrotate

#虽然logrotate是通过cron来运行的
cat /etc/cron.daily/logrotate
#!/bin/sh
/usr/sbin/logrotate /etc/logrotate.conf
EXITVALUE=$?
if [ $EXITVALUE != 0 ]; then
    /usr/bin/logger -t logrotate "ALERT exited abnormally with [$EXITVALUE]"
fi
exit 0

#而logrotate.conf里会引用/etc/logrotate.d目录
cat /etc/logrotate.conf
...
include /etc/logrotate.d
...

#在/etc/logrotate.d目录中新建一个处理nginx日志文件的配置文件
vim /etc/logrotate.d/nginx
/opt/nginx/logs/*.log {
    daily
    dateext
    compress
    rotate 3
    sharedscripts
    postrotate
        if [ -f /opt/nginx/logs/nginx.pid ]; then
           kill -USR1 `cat /opt/nginx/logs/nginx.pid`
        fi
    endscript
}

还可以直接手动执行

logrotate -d -f /etc/logrotate.d/nginx


使用logrotate进行日志分割及滚动处理

标签:

原文地址:http://my.oschina.net/jeremyxu2010/blog/394638

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!