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

日志管理工具之logrotate

时间:2018-09-17 17:53:49      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:mon   缺省   日志文件   log   没有   运行时   tor   run   软件   

Logrotate配置和测试

logrotate软件是一个日志管理工具,用于非分隔日志,删除旧的日志文件,并创建新的日志文件,起到“转储作用”,可以为系统节省磁盘空间。logrotate是基于crontab运行的,其脚本是/etc/cron.daily/logtotate,日志轮转是系统自发完成的,实际运行时,logrotate会调用配置文件/etc/logrotate.conf。可以在/etc/logrotate.d目录里放置自定义好的配置文件,用来覆盖logrotate.conf的缺省值。

logrotate常用配置文件

/etc/logrotate.conf     主配置文件

/etc/logrotate.d/       该目录里的所有文件都会自动被读入到logrotate.conf文件中

 

常用参数

compress                     通过gzip 压缩转储以后的日志

nocompress                   不做gzip压缩处理

copytruncate                  用于还在打开中的日志文件,把当前日志备份并截断;是先拷贝再清空的方式,拷贝和清空之间有一个时间差,可能会丢失部分日志数据。

nocopytruncate                备份日志文件不过不截断

create mode owner group        轮转时指定创建新文件的属性,如create 0777 nobody nobody

nocreate                      不建立新的日志文件

delaycompress                 和compress 一起使用时,转储的日志文件到下一次转储时才压缩

nodelaycompress               覆盖 delaycompress 选项,转储同时压缩。

missingok                     如果日志丢失,不报错继续滚动下一个日志

errors address                  转储时的错误信息发送到指定的Email 地址

ifempty                       即使日志文件为空文件也做轮转,这个是logrotate的缺省选项。

notifempty                    当日志文件为空时,不进行轮转

mail address                   把转储的日志文件发送到指定的E-mail 地址

nomail                       转储时不发送日志文件

olddir directory                转储后的日志文件放入指定的目录,必须和当前日志文件在同一个文件系统

noolddir                     转储后的日志文件和当前日志文件放在同一个目录下

sharedscripts                 运行postrotate脚本,作用是在所有日志都轮转后统一执行一次脚本。如果没有配置这个,那么每个日志轮转后都会执行一次脚本

prerotate             在logrotate转储之前需要执行的指令,例如修改文件的属性等动作;必须独立成行

postrotate            在logrotate转储之后需要执行的指令,例如重新启动 (kill -HUP) 某个服务!必须独立成行

daily                 指定转储周期为每天

weekly               指定转储周期为每周

monthly              指定转储周期为每月

rotate count           指定日志文件删除之前转储的次数,0 指没有备份,5 指保留5 个备份

dateext               使用当期日期作为命名格式

dateformat .%s         配合dateext使用,紧跟在下一行出现,定义文件切割后的文件名,必须配合dateext使用,只支持 %Y %m %d %s 这四个参数

size(或minsize) log-size   当日志文件到达指定的大小时才转储,log-size能指定bytes(缺省)及KB (sizek)或MB(sizem).

当日志文件 >= log-size 的时候就转储。 以下为合法格式:(其他格式的单位大小写没有试过)

size = 5 或 size 5 (>= 5 个字节就转储)

size = 100k 或 size 100k

size = 100M 或 size 100M

 
当前目录:
parallels@parallels-vm:/etc/logrotate.d$ pwd
/etc/logrotate.d
 
在此目录创建logrotate关联文件:
sudo touch test
 
具体文件内容如下:
parallels@parallels-vm:/etc/logrotate.d$ sudo cat test 
/tmp/test/*.log{
    missingok
    weekly
    create 
    rotate 3
    copytruncate
    dateext
}
 
创建存放的日志目录:自定义
sudo mkdir /tmp/test
 
parallels@parallels-vm:/tmp/test$ ll
total 14376
-rw-r--r-- 1 root root 14716979 Sep  5 16:15 nohup.err.flask.20180905161553.log
 
强制执行命令测试:
 date
Mon Sep 17 15:59:27 CST 2018
parallels@parallels-vm:/tmp/test$ sudo logrotate -vf /etc/logrotate.conf 
 
parallels@parallels-vm:/tmp/test$ ll
 
total 14376
-rw-r--r-- 1 root root        0 Sep 17 15:59 nohup.err.flask.20180905161553.log
-rw-r--r-- 1 root root 14716979 Sep 17 15:59 nohup.err.flask.20180905161553.log-20180917
 
date -s ‘2018-09-18 14:22:00’
logrotate -vf /etc/logrotate.conf
ll
total 14376
-rw-r--r-- 1 root root        0 Sep 18  2018 nohup.err.flask.20180905161553.log
-rw-r--r-- 1 root root 14716979 Sep 17 15:59 nohup.err.flask.20180905161553.log-20180917
-rw-r--r-- 1 root root        0 Sep 18  2018 nohup.err.flask.20180905161553.log-20180918
 
date -s ‘2018-09-19 14:22:00’ 
 logrotate -vf /etc/logrotate.conf
 ll
total 14376
-rw-r--r-- 1 root root        0 Sep 19  2018 nohup.err.flask.20180905161553.log
-rw-r--r-- 1 root root 14716979 Sep 17 15:59 nohup.err.flask.20180905161553.log-20180917
-rw-r--r-- 1 root root        0 Sep 18  2018 nohup.err.flask.20180905161553.log-20180918
-rw-r--r-- 1 root root        0 Sep 19  2018 nohup.err.flask.20180905161553.log-20180919
 
date -s ‘2018-09-20 14:22:00’
logrotate -vf /etc/logrotate.conf
ll
total 0
-rw-r--r-- 1 root root 0 Sep 20  2018 nohup.err.flask.20180905161553.log
-rw-r--r-- 1 root root 0 Sep 18  2018 nohup.err.flask.20180905161553.log-20180918
-rw-r--r-- 1 root root 0 Sep 19  2018 nohup.err.flask.20180905161553.log-20180919
-rw-r--r-- 1 root root 0 Sep 20  2018 nohup.err.flask.20180905161553.log-20180920
 
 
 
 
 
 
 

日志管理工具之logrotate

标签:mon   缺省   日志文件   log   没有   运行时   tor   run   软件   

原文地址:https://www.cnblogs.com/renyongbin/p/9662905.html

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