Re: crondailyのメッセージ内容 ( No.1 ) |
|
- æ¥æï¼ 2007/05/22 14:20
- ååï¼ 神門
- >error: Ignoring clamd.rpmsave, because of .rpmsave ending
>error: syslog:1 duplicate log entry for /var/log/rpmpkgs
これはよくわかりません
>/etc/cron.daily/ntpdate: > >19 May 04:02:52 ntpdate[15135]: the NTP socket is in use, exiting
NTPサービスが起動しているのに ntpdate コマンドを実行したのでポートが使われているので出力した。 要は、NTPサービス実行中は ntpdate コマンドの実行不可。
>/etc/cron.daily/yum.cron: > >Repository extras is listed more than once in the configuration >Repository updates-released is listed more than once in the configuration >Repository updates-released is listed more than once in the configuration >Repository base is listed more than once in the configuration >Repository extras is listed more than once in the configuration >Repository updates-released is listed more than once in the configuration >Repository updates-released is listed more than once in the configuration >Repository base is listed more than once in the configuration
これは /etc/yum.conf と /etc/yum.repos.d/* に二重定義されていないか確認 通常、 /etc/yum.conf の中には [main] セクションしかないはず。
|
Re: crondailyのメッセージ内容 ( No.2 ) |
|
- æ¥æï¼ 2007/05/22 20:47
- ååï¼ house
- rpmsave
っていうのが気になるのですけれども、 それって、yumとかrpm -Uvh でソフト(OSではない)を再インストールしたときに 古い設定ファイルだか、新しい設定ファイルだかのどちらかが rpmsaveって形で保存されませんでしたっけ?
それで、保存用の設定ファイルがエラーメッセージに出ているようなので、 設定ファイルがrpmsaveとごちゃごちゃになってませんか?
|
Re: crondailyのメッセージ内容 ( No.3 ) |
|
- æ¥æï¼ 2007/05/25 12:13
- ååï¼ どもん
- >神門さま
コメントありがとうございます。
error: Ignoring clamd.rpmsave, because of .rpmsave ending error: syslog:1 duplicate log entry for /var/log/rpmpkgs はまだわかりませんが、
>/etc/cron.daily/ntpdate: >/etc/cron.daily/yum.cron: は、神門さまのご指摘通りでしたので早速対応しました。 有難うございました。
>houseさま コメントありがとうございます。
# ls -l /etc/logrotate.d -rw-r--r-- 1 root root 238 9月 13 2006 clamd -rw-r--r-- 1 root root 238 7月 27 2006 clamd.rpmsave
内容はどちらも同じで # # Rotate Clam AV daemon log file #
/var/log/clamav/clamd.log { missingok nocompress create 640 qscand qscand postrotate /bin/kill -HUP `cat /var/run/clamav/clamd.pid 2> /dev/null` 2> /dev/null || true endscript } で2つ存在していましたでの、【clamd.rpmsave】を削除しました。
こて、しばらく様子を見てみます。
|