gpt4 book ai didi

Magento Cron 不工作 : no heartbeat task

转载 作者:行者123 更新时间:2023-12-05 01:02:57 25 4
gpt4 key购买 nike

我注意到 cron 作业无法正常工作,因为某些任务未执行(自动提要生成、谷歌站点地图……)。

1)我安装了(非常有用的)AOE调度器

2) 我通过 PHPmyAdmin 检查了 cron_schedule SQL 表:没有生成任务,但是如果我在 AOE 调度程序中按 Generate schedule,则会生成一个任务列表。所有任务都保持挂起状态(在 NULL 时执行)。

3)我已经设置(crontab -e)
0,5,10,15,20,25,30,35,40,45,50,55 * * * */home/fpl/webapps/magento/cron.sh

我尝试通过 SSH 手动运行 cron.sh。当我手动运行 sh 时,心跳任务就会运行。所以我也确定问题不在 cron.sh 脚本中。

Cron 在服务器上正常运行。

配置

网络派系托管
Magento 版本。 1.8.0.0

Magento 管理面板上的 Cron 计划配置
每 1 生成时间表
提前安排 20
如果未在 15 内运行则错过
心跳任务调度(cron语法) 0,5,10,15,20,25,30,35,40,45,50,55 * * * *

谢谢你的帮助!

最佳答案

我猜你的 cron.sh是不可执行的,这就是为什么什么都没有发生。
请检查文件权限并添加可执行标志
chmod +x /home/fpl/webapps/magento/cron.sh
您可能还想检查服务器的日志文件是否有 cron(例如 https://askubuntu.com/questions/56683/where-is-the-cron-crontab-log )

您也可以像这样运行它,而不是依赖 cron 是可执行的这一事实
/bin/bash /home/fpl/webapps/magento/cron.sh
并且:而不是像那样写下 session 记录,你应该使用这个:
*/5 * * * * /bin/bash /home/fpl/webapps/magento/cron.sh

关于Magento Cron 不工作 : no heartbeat task,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25470608/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com