将 cron 条目添加到 XAMPP 服务器
Posted
技术标签:
【中文标题】将 cron 条目添加到 XAMPP 服务器【英文标题】:Add cron entry to XAMPP server 【发布时间】:2017-11-06 03:48:16 【问题描述】:我在 Windows 上使用 Laravel 5.4。在文档中,它没有说明如何将 cron 条目添加到服务器。我在 YouTube 上搜索,但没有找到任何有用的视频。我需要学习如何将 cron 条目添加到 localhost 和 cPanel。
【问题讨论】:
YouTube 不是寻找文档的最佳场所,而是使用搜索引擎。我试图阻止任何东西都有视频教程的想法。请改用文档和问答网站。 Windows 没有 Cron,它有 Scheduler。如果您在 Windows 上进行开发但在 Linux 上进行部署,那么您将需要为每种方法使用不同的调度方法。或者,在本地使用 Vagrant 或 Docker,这样您就可以始终有效地在 Linux 上运行。 【参考方案1】:首先你可以在Server Not for localhost中添加cron
要在 cPanel 中添加 cron,请按照以下步骤操作
第1步:- 首先创建一个服务器要命中的 cron 函数, 并获得像
这样的完整路径http://fullpath
第二步:- 然后在 cpanel 中执行 cron 作业并设置 cron 到达该路线的时间。
要设置你必须遵循的时间
Minutes represents the minutes of a given hour, 0-59 respectively. Hours represents the hours of a given day, 0-23 respectively. Days represents the days of a given month, 1-31 respectively. Months represents the months of a given year, 1-12 respectively. Day of the Week represents the day of the week, Sunday through Saturday, numerically, as 0-6 respectively.
这样
第三步:- 然后像这样写cron命令
curl http://fullpath
像这样:-
上述 cron 作业设置为 1 秒。这意味着 cron 将在每一秒内到达该路线。
像这样你可以在 cPanel 上设置你的 cron。
【讨论】:
以上是关于将 cron 条目添加到 XAMPP 服务器的主要内容,如果未能解决你的问题,请参考以下文章