Laravel “没有预定的命令准备好运行。
我设置了以下Laravel命令:
protected function schedule(Schedule $schedule) {
$schedule->command('command:daily-reset')->daily();
$schedule->command('command:monthly-reset')->monthly();
}
然后,在我的服务器上,我已将 cron 作业设置为每天运行一次(在 00:00)。
0 0 * * * php /home/privates/public_html/staging/current/artisan schedule:run
我的 cron 作业每晚都成功运行,但日志只是说:“没有计划的命令准备好运行。
我做错了什么?我希望我的命令每晚都在运行。daily
谢谢!