web-dev-qa-db-ja.com

プロセスの実行中にログファイルをローテーションする

標準出力と標準エラーをログファイル/var/log/dragonturtle.logに書き込むプロセスを実行しています。とにかくログファイルをローテーションして、プロセスを強制終了せずに新しいログファイルへの書き込みを続行する方法はありますか?

現在何が起こっているのか(以下のlogrotate設定がある場合):

  • プロセスは/var/log/dragonturtle.logに書き込みます
  • Logrotateは/var/log/dragonturtle.log/var/log/dragonturtle.log.1に移動します
  • プロセスは/var/log/dragonturtle.log.1への書き込みを続行します

私が起こりたいこと:

  • プロセスは/var/log/dragonturtle.logに書き込みます
  • Logrotateは/var/log/dragonturtle.log/var/log/dragonturtle.log.1にコピーします
  • Logrotateは/var/log/dragonturtle.logを切り捨てます
  • プロセスは/var/log/dragonturtle.logへの書き込みを続行します

/etc/logrotate.d/dragonturtle

/var/log/dragonturtle.log {
    daily
    missingok
    rotate 7
    compress
    delaycompress
    notifempty
    create 644 dragonturtle dragonturtle
}
16
DanielGibbs

あなたが説明することを行うlogrotateオプションはcopytruncateです。このオプションを既存のlogrotate設定に追加するだけです。 logrotate.confマニュアルからの抜粋を以下に示します。

   copytruncate
          Truncate  the  original log file in place after creating a copy,
          instead of moving the old log file and optionally creating a new
          one,  It  can be used when some program can not be told to close
          its logfile and thus might continue writing (appending)  to  the
          previous log file forever.  Note that there is a very small time
          slice between copying the file and truncating it, so  some  log-
          ging  data  might be lost.  When this option is used, the create
          option will have no effect, as the old log file stays in  place.
14
jordanm