BBS 過去ログ No.0008に戻る
タイトル:
apache のログについて質問です
記事No:
2343
投稿日: 2004/06/30(Wed) 21:51
投稿者:
mmm
よろしくおねがいします。
ユーザーが増えるにつれて
/etc/logrotate.d/apache の記述の
/var/log/httpd/ユーザー名/access_log {
daily
rotate 10
missingok
postrotate
/bin/kill -HUP `cat /var/run/httpd.pid 2>/dev/null` 2> /dev/null || true
endscript
}
/var/log/httpd/ユーザー名/error_log {
daily
rotate 10
missingok
postrotate
/bin/kill -HUP `cat /var/run/httpd.pid 2>/dev/null` 2> /dev/null || true
endscript
}
の部分が、かなり増えてしかたありません。
そこで /etc/logrotate.d/apache の記述を
/var/log/httpd/*/access_log {
daily
rotate 10
missingok
postrotate
/bin/kill -HUP `cat /var/run/httpd.pid 2>/dev/null` 2> /dev/null || true
endscript
}
/var/log/httpd/*/error_log {
daily
rotate 10
missingok
postrotate
/bin/kill -HUP `cat /var/run/httpd.pid 2>/dev/null` 2> /dev/null || true
endscript
}
ユーザー名のところを「*」にしても、きちんと動作するのでしょうか?
どうかよろしくお願いします。
Copyright© Home Server Technical. All Right Reserved.