プロセスがまだ実行中のログファイルのローテーション


16

標準出力と標準エラーをログファイルに書き込むプロセスを実行しています/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
  • コピー/var/log/dragonturtle.logをLogrotate/var/log/dragonturtle.log.1
  • ログローテートトランケート /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
}

回答:


14

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.

私は、inodeチェックとフォークされたプロセスを含むもっと複雑な方法を提案するつもりでしたが、これはとても簡単です。
Jeight
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.