Answer the question
In order to leave comments, you need to log in
Laravel scheduler randomly starting?
$schedule->command('command:Command1')->cron('0 2,8,14,20 * * *');
$schedule->command('command:Command2')->cron('0 2,8,14,20 * * *');
$schedule->command('command:Command3')->cron('0 2,8,14,20 * * *');
$schedule->command('command:Command4')->cron('0 2,8,14,20 * * *');
$schedule->command('command:Command5')->cron('0 2,8,14,20 * * *');
$schedule->command('command:Command6')->cron('0 2,8,14,20 * * *');
[24-08-2016 14:50:37] - Command2 started
[24-08-2016 14:51:05] - Command2 started
[24-08-2016 14:51:42] - Command2 started
Answer the question
In order to leave comments, you need to log in
Try this
$schedule->command('command:Command1')->cron('0 */6 * * *');
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question