我放了一个 cron 脚本/etc/cron.d
:
[root@node ~]# cat /etc/cron.d/reconfig
0 */6 * * * root /root/bin/reconfig.pl
但我没有得到 root 的 cron 任务列表:
[root@node ~]# crontab -l
no crontab for root
如何检查它是否运行正常?
这是一个 Scientific Linux 6.4 节点。
我放了一个 cron 脚本/etc/cron.d
:
[root@node ~]# cat /etc/cron.d/reconfig
0 */6 * * * root /root/bin/reconfig.pl
但我没有得到 root 的 cron 任务列表:
[root@node ~]# crontab -l
no crontab for root
如何检查它是否运行正常?
这是一个 Scientific Linux 6.4 节点。
它显示此消息是因为 crontab -l 列出了来自用户 crontab 的条目,而您只编辑了全局 crontab。如果要编辑用户 crontab,只需使用以下命令:
要验证您的任务是否已执行,只需 grep syslog: