Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 cron 作业的新手,并且在 Plesk 中设置了一个以每分钟执行一次,但是由于它不起作用,我不确定该命令是否正确。
curl http://www.yourdomain.com/twitter_cron.php
我在 Centos VPS 上运行 - 问题是我不确定是否需要特定的根来卷曲。
sgeorge-mn:~ sgeorge$ which curl /usr/bin/curl
您需要在cronfor中使用完整路径curl;否则你需要PATH在 crontab 中指定适当的变量
cron
curl
PATH
例如:
* * * * * /usr/bin/curl http://www.yourdomain.com/twitter_cron.php