magento 定时任务

magento 1.X

sh /path/to/your/magento/site/root/cron.sh

magento 2.X

php /path/to/your/magento/site/html/root/magento -- --quiet cron:run

设置定时任务:

crontab -e 
*/5 * * * * sh /path/to/magento/cron.sh >/dev/null 2>&1

或者

*/5 * * * * /usr/bin/php /path/to/magento/cron.php >/dev/null 2>&1

检查是否配置成功:
等几分钟,检查cron_schedule表中状态是否变成success
magento 定时任务_第1张图片
使用邮件:
magento 1.X:

MAILTO="[email protected]"
*/5 * * * * sh /path/to/magento/cron.sh

magento 2.X

MAILTO="[email protected]"
*/5 * * * * php /path/to/magento/bin/magento -- --quiet cron:run 

你可能感兴趣的:(magento)