Laravel quot;No scheduled commands are ready to run.quot;(Laravel“没有准备好运行的预定命令.)
问题描述
我已经设置了以下 Laravel 命令:
I've set up the following Laravel commands:
protected function schedule(Schedule $schedule) {
$schedule->command('command:daily-reset')->daily();
$schedule->command('command:monthly-reset')->monthly();
}
然后,在我的服务器上,我设置了一个每天运行一次的 cron 作业(在 00:00).
Then, on my server, I've set up a cron job to run once per day (at 00:00).
0 0 * * * php /home/privates/public_html/staging/current/artisan schedule:run
我的 cron 作业每晚都成功运行,但日志只是说:没有准备好运行的预定命令."
My cron job is running successfully each night, but the logs simply say: "No scheduled commands are ready to run."
我做错了什么?我希望我的 daily
命令每晚运行一次.
What am I doing wrong? I would expect my daily
command to run each night.
谢谢!
推荐答案
您是否尝试过手动运行命令?
Did you try running command manually?
运行 php artisan
并查看您的命令是否已注册.
Run php artisan
and see if your commands have registered.
如果你已经注册了你的命令,你应该在可用的 artisan 命令列表下看到 command:daily-reset
和 command:monthly-reset
.
If you have registered your commands you should see command:daily-reset
and command:monthly-reset
under the list of available artisan commands.
如果您没有看到它们,请继续并通过将其添加到 app/Console/Kernel.php
中的 commands
属性来注册您的命令.
If you don't see them there go ahead and register your commands by adding it to commands
property available in app/Console/Kernel.php
.
protected $commands = [
'AppConsoleCommandsYourFirstCommand',
'AppConsoleCommandsYourSecondCommand'
];
将 crontab 条目更改为
Change crontab entry to
* * * * * php/home/privates/public_html/staging/current/artisan schedule:run
这篇关于Laravel“没有准备好运行的预定命令."的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel“没有准备好运行的预定命令."
基础教程推荐
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01