我想将 logrotate 配置为将 /var/log/apache2/access.log 与写入 /var/log/apache2 的所有其他日志文件分开处理。如果没有明确指定所有其他日志的名称,有没有办法让它工作?
我在网上读到 logrotate 使用 glob 对文件名进行模式匹配,但我似乎无法编写正确的模式。我尝试了很多模式,但它们都出错:
considering log /var/log/apache2/!(access.log)
log /var/log/apache2/!(access.log) does not exist -- skipping
上述模式在 bash 中确实有效,但仅适用于shopt -s extglob
. 有没有办法用 logrotate 做到这一点,没有让 apache 将 access.log 写入它自己的目录,或者修改非访问日志文件的名称?
我还尝试通过使用在尝试旋转时失败的 prerotate 脚本来使其工作access.log
,但 logrotate 抱怨我试图旋转 access.log 两次:
error: /etc/logrotate.d/apache2:16 duplicate log entry for /var/log/apache2/access.log
这是我得到的最接近的:
# rotate access.log every time logrotate is called
/var/log/apache2/access.log {
missingok
rotate 168
compress
create 640 root adm
# rotate the log every time we call logrotate (size 0)
size 0
dateext
dateformat .%Y%m%d.%s
copytruncate
}
# rotate everything daily EXCEPT access.log
/var/log/apache2/*.log {
daily
missingok
rotate 7
compress
create 640 root adm
copytruncate
# filter out access.log, which we want to rotate on its own schedule above
nosharedscripts
prerotate
bash -c "[[ ! '$1' =~ /access.log ]]"
endscript
}