Turbolinux、Red Hat Linux、Vine Linuxなどでは、syslogをはじめとする各種logファイルの1週間分のログを1ファイルとして、過去4週間分保存している。
$ ls -l /var/log/messages* |
この作業は、logrotateというツールで自動的に行われるため(cronで1日1回logrotateコマンドが実行される。設定は/etc/cron.daily/logrotate)、ユーザーが何かのアクションを行う必要はない。
logrotate は、「cron.daily」に入っている。
logrotate は、「cron.daily」に入っている。
4週間分のログでは足りない場合や、ディスクスペースの関係で4週間もログを保存しておけない場合は、保存期間などを変更することができる。
logrotateの設定ファイルは、/etc/logrotate.conf
/etc/logrotate.dディレクトリ内に、サービスごとの設定ファイルがある。
/etc/logrotate.conf 1例
/etc/logrotate.conf 1例
# see "man logrotate" for details |
/etc/logrotate.conf |
もし、1年分(53週)のログを保存するのであれば、/etc/logrotate.confの「rotate」の行を変更する。
# keep 4 weeks worth of backlogs |
「compress」オプションを指定すると(コメントを外すと)、過去のログがgzipで圧縮される。
また、特定のログだけは1年分保存して、ほかのログはデフォルトのまま4週間分保存するといった設定を行うこともできる。それには、/etc/logrotate.dディレクトリ内にある、サービスごとの設定ファイルを変更する。例えば、syslogだけを53週分保存する場合は、/etc/logrotate.confはそのままにしておいて、/etc/logrotate.d/syslogを変更する。
/var/log/messages /var/log/secure /var/log/maillog /var/log/spooler |
/etc/logrotate.conf 参考例 ------------------------------------------------------------------------------- |
# rotate log files weekly
weekly
# keep 4 weeks worth of backlogs
rotate 4
# send errors to root
errors root
# create new (empty) log files after rotating old ones
create
# uncomment this if you want your log files compressed
#compress
# RPM packages drop log rotation information into this directory
include /etc/logrotate.d
# no packages own lastlog or wtmp -- we'll rotate them here
/var/log/wtmp {
monthly
create 0664 root utmp
rotate 1
}
/var/log/lastlog {
monthly
rotate 1
}
# system-specific logs may be configured here
--------------------------------------------------------------------
0 件のコメント:
コメントを投稿
注: コメントを投稿できるのは、このブログのメンバーだけです。