日志服务器:192.168.1.220【系统平台:Red Hat Enterprise Linux Server release 5.2 (Tikanga)】
测试机:192.168.2.206【系统平台:Red Hat Enterprise Linux Server release 5.3 (Tikanga)】
日志服务器:
1、编辑/etc/sysconfig/syslog:
SYSLOGD_OPTIONS="-m 0"
为
SYSLOGD_OPTIONS="-m 0 -r"
2、重启syslog服务,会发现UDP的514端口处于监听状态。
测试机:
1、编辑/etc/syslog.conf:
cron.* /var/log/cron
为
cron.* @192.168.1.220
2、重启syslog服务;
3、在crond处于启动状态的情况下,crontab -e
*/5 * * * * /usr/bin/free >> ~/free.log
4、逢5、逢10的时候,会发现/root/free.log在不断增大,但是/var/log/cron并没有任何的变化.
测试效果:
查看192.168.1.220的/var/log/cron,会发现:
Feb 8 16:20:01 192.168.2.206 crond[2328]: (root) CMD (/usr/bin/free >> ~/free.log)
Feb 8 16:25:08 192.168.2.206 crond[2341]: (root) CMD (/usr/bin/free >> ~/free.log)
Feb 8 16:30:01 192.168.2.206 crond[2345]: (root) CMD (/usr/bin/free >> ~/free.log)
阅读(2647) | 评论(2) | 转发(1) |