赞
踩
(1)创建一个logrotate配置文件:vim /etc/logrotate.d/tomcat
(2)在文件中写入以下内容:
/home/tomcat/logs/catalina.out{
copytruncate
daily
rotate 5
missingok
compress
size 300M
dateext
dateformat -%Y-%m-%d-%s
}
配置参数说明:
copytruncate:用于还在打开中的日志文件,把当前日志备份并截断。
daily :指定转储周期为每天。
rotate count :指定日志文件删除之前转储的次数,0 指没有备份,5 指保留 5 个备份。
missingok:在日志轮循期间,任何错误将被忽略。
compress: 通过 gzip 压缩转储以后的日志。
size size:当日志文件到达指定的大小时才转储,bytes 及 KB 或 MB。
dateext:使用当期日期作为命名格式。
dateformat -%Y-%m-%d-%s:配合dateext使用,定义文件切割后的文件名,必须配合dateext使用,只支持 %Y %m %d %s 这四个参数。
每天凌晨1:10执行任务
(1)crontab -e
(2)10 1 * * * /usr/sbin/logrotate -f /etc/logrotate.d/tomcat > /dev/null 2>&1
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。