Chinaunix首页 | 论坛 | 博客
  • 博客访问: 10706156
  • 博文数量: 2905
  • 博客积分: 20098
  • 博客等级: 上将
  • 技术积分: 36298
  • 用 户 组: 普通用户
  • 注册时间: 2009-03-23 05:00
文章存档

2012年(1)

2011年(3)

2009年(2901)

分类: LINUX

2009-03-23 11:21:07

#####################################################################
# 日志轮循主配置文件【logrotate.conf】
# 作者:胡昌文
# 日期:2008-06-11
####################################################################
# see "man logrotate" for details
# rotate log files weekly
weekly
#轮循的周期【每天,每星期,每月,每年】
# keep 4 weeks worth of backlogs
rotate 4
#日志保留的分数
# create new (empty) log files after rotating old ones
create
#新日志文件的生成方式
# uncomment this if you want your log files compressed
#compress
#是否压缩日志文件
# RPM packages drop log rotation information into this directory
include /etc/logrotate.d
#引入特定日志文件的轮循方法
# no packages own wtmp -- we'll rotate them here
/var/log/wtmp {
    monthly
    create 0664 root utmp
    rotate 1
}
#某个特定日志文件的轮循方式
# system-specific logs may be also be configured here.
阅读(1989) | 评论(0) | 转发(0) |
0

上一篇:LINUX上多MYSQL服务安装试验

下一篇:计划

给主人留下些什么吧!~~