前端之家收集整理的这篇文章主要介绍了
docker ubuntu cron -f无效,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
试图在docker容器中运行cron作业.
正确配置了supervisord
(我在ps -ef中看到cron -f,如果我杀了它就会重生)
crontab文件(用于测试):
* * * * * echo hi>> /根/测试
我尝试将它放在/etc/cron.d/crontab / etc / crontab和/ var / spool / cron / crontabs / crontab中
没有什么工作 – 我在/ root / test中没有得到任何东西
有任何想法吗?
最佳答案
您可能想检查您的crontab语法; / etc / crontab等地方的crontab
文件需要额外的
用户名字段,例如:
* * * * * root echo hi >> /root/test
这在crontab(5)中记录(不是非常突出):
Jobs in /etc/cron.d/
The jobs in cron.d and /etc/crontab are system jobs,which are used usually for more
than one user,thus,additionally the username is needed….
原文链接:https://www.f2er.com/docker/436507.html