如何从 Linux 盒子中定期调用 URL(cron 作业)?
我可以在我的网站所在的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其添加到 /etc/crontab
或者,在 /etc/cron.hourly 文件中创建一个 shell 脚本
: wget
确保您 chmod +x wget (或您选择的任何文件名)
Add this to /etc/crontab
Alternatively, create a shell script in the /etc/cron.hourly
File: wget
make sure you chmod +x wget (or whatever filename you picked)