標準出力と標準エラーをログファイル/var/log/dragonturtle.log
に書き込むプロセスを実行しています。とにかくログファイルをローテーションして、プロセスを強制終了せずに新しいログファイルへの書き込みを続行する方法はありますか?
現在何が起こっているのか(以下のlogrotate設定がある場合):
/var/log/dragonturtle.log
に書き込みます/var/log/dragonturtle.log
を/var/log/dragonturtle.log.1
に移動します/var/log/dragonturtle.log.1
への書き込みを続行します私が起こりたいこと:
/var/log/dragonturtle.log
に書き込みます/var/log/dragonturtle.log
を/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
}
あなたが説明することを行う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.