I have a Laravel project v8 and I have created a cron job for DB backup
It’s working every minute but it is not working when I specify the time for daily.
Project timezone is ‘Asia/Kolkata’ and my GoDaddy shared server timezone is UTC.
kernel.php
<?php
namespace AppConsole;
use IlluminateConsoleSchedulingSchedule;
use IlluminateFoundationConsoleKernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* Define the application's command schedule.
*
* @param IlluminateConsoleSchedulingSchedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
// $schedule->command('backup:clean')->everyMinute();
$schedule->command('backup:run')->cron('51 3 * * *');
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}
my cronjob on Cpanel.
2
Answers
Replace your kernel.php
And after this set cronjob on Cpanel with the time on which you want to execute
Check that the given time in cpanel the cron will work definitely
You can run cron like this: