我正在尝试创建一个示例 cron 作业。
首先,我使用以下方法编辑了 crontab:
crontab -e
然后我添加了这一行,以便每分钟在我家创建一个测试文件夹:
1 * * * * mkdir -p /home/<myusername>/foo/
然后我确保 cron 正在运行:
root 913 1 0 Aug22 ? 00:00:00 cron
但是,如果我尝试重新启动它(或停止它):
restart cron
我收到以下错误消息:
restart:拒绝发送消息,匹配规则1条;type="method_call", sender=":1.73" (uid=1000 pid=17887 comm="restart cron") interface="com.ubuntu.Upstart0_6.Job" member="Restart" error name="(unset)" requested_reply="0" 目的地="com.ubuntu.Upstart" (uid=0 pid=1 comm="/sbin/init")
还有未创建的测试文件夹。