为什么 cron 作业在 laravel 的 2021 年新年停止
why cron job stoped in new year 2021 in laravel
一切正常,直到 2020 年 12 月 31 日,在新的一年里,我的 cron 作业停止工作我不知道发生了什么,我正在使用 spatie laravel 包来进行数据库备份,我还有另一个 cron 作业在控制台和命令
kernal.php
`<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
'App\Console\Commands\UpdateUserNotNew',
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
// $schedule->command('inspire')
// ->hourly();
$schedule->command('cron:update-user-not-new')->everyMinute();
$schedule->command('backup:run')->everyMinute();
$schedule->command('backup:clean')->everyMinute();
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}`
我的问题已由解决
只有我的 php 版本没有与 php multimanager
集成
问题很可能不是来自 spatie/laravel-backup
软件包。对于 运行 Laravel 的 cronjob,你需要在你的 crontab 中有一个中央调用 Laravels scheduler
* * * * * cd /path-to-your-project && php artisan schedule:run
您也可以通过运行ning
在本地查看所有的定时任务
$ php artisan schedule:work
如果他们在本地 运行 正常,那么您的服务器有问题,但 Laravel。
如果出现任何错误,请务必查看 storage/logs/laravel.log
。
一切正常,直到 2020 年 12 月 31 日,在新的一年里,我的 cron 作业停止工作我不知道发生了什么,我正在使用 spatie laravel 包来进行数据库备份,我还有另一个 cron 作业在控制台和命令 kernal.php
`<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
'App\Console\Commands\UpdateUserNotNew',
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
// $schedule->command('inspire')
// ->hourly();
$schedule->command('cron:update-user-not-new')->everyMinute();
$schedule->command('backup:run')->everyMinute();
$schedule->command('backup:clean')->everyMinute();
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}`
我的问题已由
问题很可能不是来自 spatie/laravel-backup
软件包。对于 运行 Laravel 的 cronjob,你需要在你的 crontab 中有一个中央调用 Laravels scheduler
* * * * * cd /path-to-your-project && php artisan schedule:run
您也可以通过运行ning
在本地查看所有的定时任务$ php artisan schedule:work
如果他们在本地 运行 正常,那么您的服务器有问题,但 Laravel。
如果出现任何错误,请务必查看 storage/logs/laravel.log
。