Trade Off

supercalifragilisticexpialidocious

Active Cron Log in Ubuntu

bnly.org使用crontab来不断fetch和send,这看起来很傻,不过挺容易搭建。目前send过程每分钟一次,fetch过程10分钟一次。

在ubuntu下默认没有cron的日志,需要这样开启:

1
2
3
4
vi /etc/rsyslog.d/50-default.conf
解除cron的注释
service rsyslog restart
service cron restart

这样就可以在/var/log/下找到cron.log查看了。

Comments