cron.d 中的 cron 文件存在问题

cron.d 中的 cron 文件存在问题

运行 amazon ami(类似于 centos。)

这是我在 /var/log 下的 cron 文件中找到的内容:

Sep  4 15:32:01 mike crond[2289]: (root) BAD FILE MODE (/etc/cron.d/mytasks)

这是我的文件 mytasks,它位于 cron.d 文件夹下

SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=mygmailemail
HOME=/
#hourly query for social share data
1  1-23  *  *  *  wget -q http://localhost/sharecounter.php?period=hourly -O /dev/null 2      >&1 > /dev/null

#daily query for social share data
1  0  * *   1-6  wget -q http://localhost/sharecounter.php?period=daily -O /dev/null         2>&1 > /dev/null

知道哪里出了问题吗?

答案1

正如消息所告诉您的,该文件的权限错误。您可能已将其设置为组或世界可写;如果是这种情况,则存在安全风险,crond 将拒绝运行它。

相关内容