web-dev-qa-db-ja.com

/var/log/mail.logのlogrotate設定ファイルはどこで探すべきですか

mail.log回転されたファイルの接尾辞を変更して、日付を含めるようにします。

/var/log/mail.log.20180920

これから読みます question/etc/cron.weekly/sysklogdを変更する必要があるが、そのようなファイルはありません。デフォルトを書き直したいのですが、そのための新しい設定を書くために、この post で言及されています。そのため、このログファイルはsyslogによって作成されるため、/etc/logrotate.d/rsyslogにリストされているため、このファイルを次のように変更して日付サフィックスを含めるようにしました。

/var/log/syslog
{
        rotate 400
        daily
        missingok
        notifempty
        delaycompress
        compress
        postrotate
                reload rsyslog >/dev/null 2>&1 || true
        endscript
}

/var/log/mail.info
/var/log/mail.warn
/var/log/mail.err
/var/log/mail.log
/var/log/daemon.log
/var/log/kern.log
/var/log/auth.log
/var/log/user.log
/var/log/lpr.log
/var/log/cron.log
/var/log/debug
/var/log/messages
{
        rotate 400
        hourly
        dateext
        dateformat .%Y%m%d
        missingok
        notifempty
        compress
        delaycompress
        sharedscripts
        postrotate
                reload rsyslog >/dev/null 2>&1 || true
        endscript
}

また、rsyslogとmail.logのエントリを/ var/lib/logrotate/statusから削除して、今日のログを強制的にローテーションさせ、次にlogrotate /etc/logrotate.conf --debugを実行しますが、出力では次のようになります。

rotating pattern: 
/var/log/mail.log
 hourly (400 rotations)
empty log files are not rotated, old logs are removed
switching euid to 0 and egid to 104
considering log /var/log/mail.log
  log does not need rotating

そのため、logrotate -f /etc/logrotate.confを実行してログを強制的に回転させ、/var/lib/logrotate/statusのエントリを更新します。ファイル/var/log/maill.logが生成されますが、mail.log.20181020ファイルが表示されることを期待していますが、なぜ生成されないのですか?

ありがとうございました

1
Alex

man logrotate:から、終わり近く

FILES

   /var/lib/logrotate/status  Default state file.
   /etc/logrotate.conf        Configuration options.
1
waltinator

/etc/logrotate.confでは、次のディレクティブを設定できます。

   dateext
          Archive old versions of log files adding a date extension like YYYYMMDD instead of simply adding a  number.
          The extension may be configured using the dateformat and dateyesterday options.

   dateformat format_string
          Specify  the  extension for dateext using the notation similar to strftime(3) function. Only %Y %m %d %H %M
          %S %V and %s specifiers are allowed.  The default value is -%Y%m%d except hourly, which uses  -%Y%m%d%H  as
          default value.  Note that also the character separating log name from the extension is part of the datefor‐
          mat string. The system clock must be set past Sep 9th 2001 for %s to work correctly.  Note that  the  date‐
          stamps  generated  by this format must be lexically sortable (i.e., first the year, then the month then the
          day. e.g., 2001/12/01 is ok, but 01/12/2001 is not, since 01/11/2002 would sort lower while it  is  later).
          This  is because when using the rotate option, logrotate sorts all rotated filenames to find out which log‐
          files are older and should be removed.

   dateyesterday
          Use yesterday's instead of today's date to create the dateext extension, so that the rotated log file has a
          date in its name that is the same as the timestamps within it.

詳細情報は here またはman logrotateで見つけることができます。

1
abu_bua