如何从 Linux 盒子中定期调用 URL(cron 作业)?

发布于 2024-12-01 23:40:28 字数 171 浏览 2 评论 0原文

我可以在我的网站所在的 Linux 机器上进行 shell 访问。

我想每小时在该网站上调用一个 URL(它不是特定的 PHP 文件,我有 codeigniter 有一个框架和一些 Apache 重定向,所以我确实需要调用一个 URL)。

我想我可以使用 wget 和 crontab 吗?如何?

I have a shell access on a Linux box where my Website resides.

I want to call a URL each hour on that Website (it's not a specific PHP file, I have codeigniter has a framework and some Apache redirects, so I really need to call a URL).

I guess I can use wget and crontab? How?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叶落知秋 2024-12-08 23:40:28

将其添加到 /etc/crontab

0 * * * * wget -O - -q -t 1 http://www.example.com/cron.php

或者,在 /etc/cron.hourly 文件中创建一个 shell 脚本

: wget

#!/bin/sh
wget -O - -q -t 1 http://www.example.com/cron.php

确保您 chmod +x wget (或您选择的任何文件名)

Add this to /etc/crontab

0 * * * * wget -O - -q -t 1 http://www.example.com/cron.php

Alternatively, create a shell script in the /etc/cron.hourly

File: wget

#!/bin/sh
wget -O - -q -t 1 http://www.example.com/cron.php

make sure you chmod +x wget (or whatever filename you picked)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文