Laravel 5 schedule not working

2019-04-27 02:30发布

My laravel version is 5.0.28, I build on cloud9, and I added this command to my cron:

#!/bin/bash
PATH=/usr/bin
* * * * * php /home/ubuntu/workspace/app/artisan scheduled:run 1>> /dev/null 2>&1

I added this code on my Kernel.php. I referenced this site: https://laravel-news.com/2014/11/laravel-5-scheduler/

<?php namespace App\Console;

use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use App\Http\Controllers\ApiController;

class Kernel extends ConsoleKernel {

    protected $commands = [
        'App\Console\Commands\Inspire',
    ];

    protected function schedule(Schedule $schedule)
    {
        $schedule->call('ApiController@test_job')->hourly();
    }
}

I waited and it still didn't work, so I tried to use the command php artisan schedule:run, and I got: No scheduled commands are ready to run.

I searched and found this answer: Laravel 5 "Class does not exist" when using the scheduler

So I modified my code. Also, this code had no specified time, so I modified my cron to specify a time, but it still doesn't work. I have no more ideas. please help. Thanks.

code

$schedule->call(join('@', [ApiController::class, 'test_job']));

cron

0 0,3,6,9,12,15,18,21 * * * php /home/ubuntu/workspace/app/artisan schedule:run 1>> /dev/null 2>&1
30 1,4,7,10,13,16,19,22 * * * php /home/ubuntu/workspace/app/artisan schedule:run 1>> /dev/null 2>&1

4条回答
冷血范
2楼-- · 2019-04-27 02:39

first to Test if cron is running in your server or localhost type:

> sudo service cron status

if not installed:

> sudo apt-get install cron

to enable laravel's scheduler:

> crontab -e

and you can select an editor if not vim opens directly. Be sure to enter there this line at the bottom:

* * * * * php /path_from_root_to_laravel_proj_folder/artisan schedule:run 1>> /dev/null 2>&1

to Test if you have setup inside laravel the scheduler right, run this from your projects folder:

>php artisan schedule:run

this should execute the tasks and tell you what is doing.

查看更多
Ridiculous、
3楼-- · 2019-04-27 02:48

In order to complete @limonte's answer the create Console Command is the following:

php artisan make:console CampaignsCollect --command=campaigns:collect

Reference here: link

查看更多
ゆ 、 Hurt°
4楼-- · 2019-04-27 02:49

Laravel scheduler works with commands, not with controller methods:

  1. create command:
php artisan make:command PurchasePodcast
  1. edit command:
namespace App\Console\Commands;

use Illuminate\Console\Command;

class PurchasePodcast extends Command
{
    protected $name = 'purchase:podcast';

    public function fire()
    {
        // do stuff here
    }
}
  1. add command to Console\Kernel.php:
protected $commands = [
    'App\Console\Commands\PurchasePodcast',
];
  1. use command in scheduler:
$schedule->command('purchase:podcast')->hourly();
查看更多
在下西门庆
5楼-- · 2019-04-27 02:58

There are several aspects to find the cause: First, check whether the 'timezone' in config/app.php is set properly. Laravel will reset the timezone even though you already configured it in php.ini. Secondly, check that crontab is working as expected. When you get the message "No schedule to be ready", it means your crontab is running and can detect the php and artisan command.

查看更多
登录 后发表回答