作者:PearlLisa_Shanghai_901 | 来源:互联网 | 2024-11-05 10:08
在Docker容器中,尽管crontab服务已启动且定时任务能够成功添加,但任务却未能如期执行。本文探讨了这一问题的原因,并提出了有效的解决方案与优化策略,确保定时任务在容器环境中稳定运行。
crontab服务已经启动,定时任务也能添加成功,但是不执行(出现在docker container 内)
解决方案
问题解决
/etc/pam.d/crond
#
# The PAM configuration file for the cron daemon
#
#
# No PAM authentication called, auth modules not needed
account sufficient pam_access.so
account include password-auth
session sufficient pam_loginuid.so
session include password-auth
auth include password-auth
~