我已通过 将 WordPress cronjobs 添加到 crontab crontab -e
。但当我尝试时 run-parts /etc/cron.hourly -v
,它没有执行我的 5 分钟 crontab。如何验证我的 crontab 作业是否正常运行?
当我运行时crontab -l
,它会显示如下所示的我的工作。
[email protected]
15 3 * * 7 certbot renew --post-hook "service nginx restart"
7 0 * * * "/root/.acme.sh"/acme.sh --cron --home "/root/.acme.sh" > /dev/null
*/5 * * * * curl https://site1.com/wp-cron.php?doing_wp_cron > /dev/null 2>&1
*/5 * * * * curl https://www.site2.com/wp-cron.php?doing_wp_cron > /dev/null 2>&1
*/5 * * * * curl https://www.site3.com/wp-cron.php?doing_wp_cron > /dev/null 2>&1
*/5 * * * * curl https://www.site4.com/wp-cron.php?doing_wp_cron > /dev/null 2>&1
*/5 * * * * curl https://site5.com/wp-cron.php?doing_wp_cron > /dev/null 2>&1