CRON 命令每 5 分钟运行一次 URL 地址

2022-01-03 00:00:00 cron php

我是 cron 命令的新手,需要帮助.

I'm newbie in cron commands and I need help.

我在 http://example.com/check/ 上有一个脚本.

I have a script on http://example.com/check/.

cron 每 5 分钟运行一次这个 URL 的命令是什么?

Whats is command for cron to run this URL every 5 minutes?

我试过了

*/5 * * * */home/test/check.php

*/5 * * * * /home/test/check.php

但我想运行 URL 而不是相对脚本地址.怎么做?

But I want to run URL not relative script address. How to do it?

推荐答案

基于评论尝试

*/5 * * * * wget http://example.com/check

这个答案似乎仍然获得了一些点击,所以我想我会添加一个指向我偶然发现的新页面的链接,这可能有助于创建 cron 命令:https://crontab.guru

This answer still seems to be getting a few hits so I thought I'd add a link to a new page I stumbled across which may help create cron commands: https://crontab.guru

相关文章