Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
918 views
in Technique[技术] by (71.8m points)

php - Command schedule in Laravel

I'm trying to a execute scheduled command every five minutes in background. I use this code

protected function schedule(Schedule $schedule)
    {

        $schedule->command('read:mail')->cron('*/1 * * * * *')->sendOutputTo(storage_path().'/logs/output.txt')->withoutOverlapping();

    } 

I suppose that this code is fine, when i use php artisan scheduler:run command works, but doesn't work every five minutes in background. ?Any idea?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you want to use the scheduler you need to add a Cron entry in your server, this line will call the Laravel scheduler every minute and do the tasks.

There is the line you need to add to your Crontab:

* * * * * php /path-to-your-project/artisan schedule:run >> /dev/null 2>&1

In case you are using Ubuntu to edit your crontab you can run crontab -e and add the line on the bottom.

You can read more on the official docs about Scheduling.

If you are using Windows you can follow this Stackoverflow question to add a task to the Windows task scheduler.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...