我想知道哪些日志优先于另一个。
查看此处定义的 rsyslog,它定义了每日轮换并将它们保留 30 天。
vim /etc/logrotate.d/rsyslog
/var/log/syslog
{
rotate 30
daily
missingok
notifempty
delaycompress
compress
postrotate
/usr/lib/rsyslog/rsyslog-rotate
endscript
}
然后我们有主配置,每周轮换一次,一次保持 4 周。
vim /etc/logrotate.conf
# rotate log files weekly
weekly
# use the syslog group by default, since this is the owning group
# of /var/log/syslog.
su root syslog
# 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
# packages drop log rotation information into this directory
include /etc/logrotate.d
哪个优先于另一个?
规则在读取时被简单地评估,最后遇到的设置会覆盖以前的设置。
由于
/etc/logrotate.conf
文件的最后一行include /etc/logrotate.d
,该目录中的文件也在主配置文件之后处理。因此,该/etc/logrotate.d/rsyslog
文件将覆盖/etc/logrotate.conf
.关键是您可以在主配置文件中设置默认值,并在必要时为单个日志文件覆盖这些默认值。