文章目录
- 介绍
- 安装
- 配置
- 默认配置
- logrotate参数
- 运行
- debug模式
- verbose模式
- force模式
- 定时执行
- cron.daily
- 自定义crontab
- 配置示例
- 按文件大小转储
- 按日期转储
介绍
logrotate是基于linux系统的日志管理工具,可用于切割、删除、转储日志文件,logrotate是基于crontab运行的,其配置文件为/etc/logrotate.conf
,也可以将自定义的配置文件放在/etc/logrotate.d
目录下,可覆盖logrotate.conf
的配置。
安装
通常Linux默认安装了logrotate,可以通过以下命令检查是否已经安装:
root@server:~# logrotate --version
logrotate 3.19.0Default mail command: /usr/bin/mailDefault compress command: /bin/gzipDefault uncompress command: /bin/gunzipDefault compress extension: .gzDefault state file path: /var/lib/logrotate/statusACL support: yesSELinux support: yes
安装后其执行文件为/usr/sbin/logrotate
,其并不是系统服务和守护进程。
配置
默认配置
/etc/logrotate.conf
为默认的配置文件,其中的配置向对于所有的日志文件都生效,如果要对特定的日志文件进行配置,需要在/etc/logrotate.d/
目录下单独添加配置文件。其默认配置如下:
# see "man logrotate" for details# global options do not affect preceding include directives# rotate log files weekly
weekly# use the adm group by default, since this is the owning group
# of /var/log/syslog.
su root adm# keep 4 weeks worth of backlogs
rotate 4# create new (empty) log files after rotating old ones
create# use date as a suffix of the rotated file
#dateext# uncomment this if you want your log files compressed
#compress# packages drop log rotation information into this directory
include /etc/logrotate.d# system-specific logs may also be configured here.
logrotate参数
参数 | 说明 |
---|---|
daily/weekly/monthly/yearly | 日志轮换周期,每天、每周、每月、每年 |
size | 日志文件达到指定大小时轮换,默认单位bytes,如:size 50M, size 1G。 |
rotate | 日志文件的保留个数,默认为0,如:rotate 5。 |
maxage | 指定日志文件的最大存在时间。 |
minsize | 指定日志文件的最小大小。 |
maxsize | 指定日志文件的最大大小。 |
olddir noolddir | 将转出的日志文件存放到指令目录,如olddir ./xxxx/,默认为当前目录下。 |
compress nocompress | 压缩旧日志文件。 |
delaycompress nodelaycomporess | 在下一次轮换时才压缩日志文件。 |
missingok | 如果日志文件不存在,则忽略错误。 |
notifempty | 如果日志文件为空,则不轮换。 |
copytruncate | 使用复制和截断来实现日志文件的轮换。 |
dateext | 在轮换后的日志文件名中添加日期扩展,默认为-%Y%m%d,可用dataformat修改。 |
dateformat | 自定义日期格式,用于日志文件名的日期扩展,配合dateext使用。 |
extension | 指定压缩的日志文件扩展名。 |
ifempty | 如果日志文件为空,则仍然进行轮换。 |
create | 创建新的日志文件并设置权限、所有者和组,如:create 744 root root。 |
su | 指定以特定用户身份执行轮换操作。 |
sharedscripts | 在每个日志文件轮换之后执行一次postrotate脚本。 |
prerotate endscript | 在轮换之前执行特定的命令。 |
postrotate endscript | 在轮换之后执行特定的命令。 |
firstaction endscript | 在第一次轮换之前执行特定的命令。 |
lastaction endscript | 在最后一次轮换之后执行特定的命令。 |
运行
debug模式
用于测试配置文件的正确性,仅输出debug信息,不执行操作。
logrotate -d <配置文件>
verbose模式
会根据配置执行操作,并打印详细信息。
logrotate -v <配置文件>
force模式
测试时如果日期不达到配置中的轮换时间,执行logrotate命令时也不会进行转储,可以通过-f
进行强制执行。
logrotate -f <配置文件>
定时执行
cron.daily
logrotate是基于cron运行的,执行时间通过cron的配置进行设定,其配置文件为/etc/crontab
和/etc/anacrontab
。
在/etc/cron.daily/
目录下包含logrotate
脚本,每日执行logrotate命令,如果自行配置了crontab,可能导致转储操作执行两次。
cron.daily
的执行时间配置在/etc/crontab
中。
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
以上配置表示cron.daily
在每天的6点25分执行。这样日志转储的时间也是6点25分。如果想不按照这个时间进行日志转储,则logrotate配置文件不能放在/etc/logrotate.d/
目录下,否则将会执行两次。
自定义crontab
- 编辑
crontab
文件:
crontab -e
- 添加定时配置:
* * * * * logrotate /root/logrotate/test
该配置将每分钟执行一次转储操作。
配置示例
按文件大小转储
/var/log/test/*.log {size 30rotate 5copytruncatemissingokcompressdelaycompresscreate 0640 root root
}
对于原始的test.log文件,将被转储为文件名为test.log-20231223的文件,且已转储的文件将被压缩成test.log-20231222.gz文件。
按日期转储
/var/log/test/*.log {dailyrotate 5copytruncatedateextmissingokcompressdelaycompresscreate 0640 root root
}
按每日对日志文件进行转储时,logrotate配置文件可以放在/etc/logrotate.d/
目录下,通过默认配置的cron.daily
进行定时触发。