在 Linux 服务器中启用和禁用日志监视功能

在 Linux 服务器中启用和禁用日志监视功能

谁能分享一下如何在 Linux RHEL 5 机器中启用和禁用日志监视功能的程序。

提前致谢。

答案1

Logwatch 通常由 cron 启动。

检查目录 /etc/cron.daily/ 中是否有启动 logwatch 的脚本。

在 RHEL 中有一个符号链接/etc/cron.daily/0logwatch指向/usr/share/logwatch/scripts/logwatch.pl

您可以从 /etc/cron.daily 中删除此链接 (0logwatch) 以防止 logwatch 每天运行:

rm /etc/cron.daily/0logwatch

要重新启用它,只需再次创建一个符号链接:

ln -s /usr/share/logwatch/scripts/logwatch.pl /etc/cron.daily/0logwatch

相关内容