知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

Linux日志轮替简析

发布时间:2014-09-05 16:08:40作者:知识屋

Linux日志轮替简析
 
[plain]
#日志轮替默认子Cron里面进行  
/etc/cron.daily/logrotate  
#日志文件依赖配置文件  
/etc/logrotate.conf  
  
#配置文件详细内容解读  
weekly  #默认每周进行一次日志清理  
rotate 10 #保留的日志文件  
# create new (empty) log files after rotating old ones  
create  #创建一个新的来存储  
# uncomment this if you want your log files compressed  
#compress  #是否需要压缩    www.zhishiwu.com  
# 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 {  #针对单个wtmp日志操作  
    monthly    #每个月一次  
    minsize 1M    #超过1M整理  
    create 0664 root utmp  #新加文件权限和用户组  
    rotate 1  #保留一个文件  
}  
 
 
作者 initphp
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜