2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Redmineのproduction.logをログローテーションする方法

Posted at

事象

redmineのproduction.logが開けない

原因

redmineのproduction.logが肥大化しすぎ
※一応tailコマンドで行数指定で開けるがこのまま肥大化し続けるのはよくないため、対応

対処法

logrotateで月次でログをローテーションさせる
※logrotateのツールで複数のログファイルを圧縮、削除、メールで送信するための機能

1. logrotateのインストールを確認

yum list installed | grep logrotate

2. redmineの個別logrotateファイルを設定

/etc/logrotate.d/redmine
/opt/rails/redmine/log/*log {
    monthly
    missingok
    notifempty
    copytruncate
    compress
    su redmine redmine
}

3. logrotateをデバッグ

logrotate -d /etc/logrotate.d/redmine

4. logrotateを手動実行

logrotate -f /etc/logrotate.d/redmine

つまづいたポイント

logrotateしたときに「because parent directory has insecure permissions」というエラーが発生
 ⇒ローテーションする際に権限でエラーが発生していると考えられる

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?