CRON command to run URL address every 5 minutes(CRON 命令每 5 分钟运行一次 URL 地址)
问题描述
我是 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
这篇关于CRON 命令每 5 分钟运行一次 URL 地址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:CRON 命令每 5 分钟运行一次 URL 地址
基础教程推荐
- HTTP 与 FTP 上传 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01