php Laravel命令时间表无法正常工作

pod7payv  于 2023-02-28  发布在  PHP
关注(0)|答案(4)|浏览(102)

我正在本地主机上用Laravel 7.28构建一个项目。我需要每小时更新一个PDF。开始时我创建了一个命令:

<?php

namespace App\Console\Commands;

use App\Event;
use Illuminate\Console\Command;

class PDF extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'pdf:update';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'All Country PDFs updated';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return int
     */
    public function handle()
    {

        $event = new Event();
        $event->user_id = 1;
        $event->save();

        echo 'done';
    }
}

它只是在事件表中插入一条记录,工作正常。然后我编辑了App\Console目录下的Kernel.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 = [
        Commands\PDF::class,
    ];

    /**
     * Define the application's command schedule.
     *
     * @param \Illuminate\Console\Scheduling\Schedule $schedule
     * @return void
     */
    protected function schedule(Schedule $schedule)
    {
        $schedule->command('pdf:update')->everyMinute();
    }

    /**
     * Register the commands for the application.
     *
     * @return void
     */
    protected function commands()
    {
        $this->load(__DIR__ . '/Commands');

        require base_path('routes/console.php');
    }
}

最后,我运行php artisan schedule:run。我希望该命令每分钟运行一次,但它只运行一次。这是localhost上的问题还是我做错了什么?

wn9m85ua

wn9m85ua1#

php artisan schedule:run根据其定义只运行一次:
schedule:run Artisan命令将评估所有计划任务,并根据服务器的当前时间确定是否需要运行这些任务。
如果你想每分钟都这样做,你应该使用一个预定的过程控制系统,如supervisorcrontab等(更多信息在这里)
如果您正在使用laravel 8.x并在开发/本地服务器上运行,则可以使用以下命令,它将为您工作:

php artisan schedule:work
wgmfuz8q

wgmfuz8q2#

对于Laravel 7,您还可以使用以下命令在本地运行

while true; do php artisan schedule:run; sleep 60; done
dphi5xsq

dphi5xsq3#

在Windows本地主机上
1.首先,在App\Console\Kernel中的run方法上设置所需的调度作业有关Laravel website page here的更多信息
1.其次,在命令行上运行以下命令
php artisan schedule:work

cgfeq70w

cgfeq70w4#

另一个注意事项,任何人使用Laravel帆,请确保您运行它像这样:
./vendor/bin/sail artisan schedule:work

相关问题