CRON JOB - LARAVEL - OUTPUT - laravel

Hi I'm running CRON JOB with Laravel
Function declaration in Laravel
protected function schedule(Schedule $schedule)
{
echo "test CRON JOB\n";
$file1 = '1.log';
$file2 = '2.log';
$schedule->command('command1')->sendOutputTo($file1);
$schedule->command('command2')->sendOutputTo($file2);
}
CRON JOB - Setting
pathToArtisan schedule:run 2>&1 >> /home/log/cron_output.log
Log file output (cron_output.log)
test CRON JOB
Running scheduled command: '/opt/alt/php55/usr/bin/php' 'artisan'command1 > '1.log' 2>&1 &
Running scheduled command: '/opt/alt/php55/usr/bin/php' 'artisan' command2 > '2.log' 2>&1 &
The echo in the function schedule is displayed but the ones inside my command 1 and command 2 are not.
I tried
echo "test"; $this->info('test');
No files 1.log or 2.log where created neither /home/log/ or where the Kernel.php file is or Command folder
Any ideas ?
Thank you

You should use the built-in task output method in Laravel.
For example:
$file = 'command1_output.log';
$schedule->command('command1')
->sendOutputTo($file);

Everything is ok now.
$schedule->command('command1')
->sendOutputTo($file);
and inside your command
$this->info('test')
The files are created in the root folder of my application so I didn't see them !
Thank you

$schedule->command('my:command')
->daily()
->onSuccess(function () {
// The task succeeded...
//set flag here and store to DB
})
->onFailure(function () {
// The task failed...
//set flag here and store to DB
});
Show list in admin dashboard so that you can check logs using these flags(cron status)

Related

Why don't laravel tasks run with cron?

I need to send emails from laravel tasks. I have this code for the task.
$schedule->call(function () {
$date = now()->addDays(1);
echo 'step 1';
$appointment = Cita::whereDate('date', $date)->with(['patient'])->orderBy('date')->orderBy('hour')->get();
echo 'step 2';
foreach($appointment as $appt) {
$data = array("name" => $appt->patient->name, "body" => 'Remember me');
if ($appt->patient->email !== null) {
Mail::to($cita->paciente->email)->send(new Reminder($data));
}
echo 'step 3';
}
})->everyMinute();
When running the command
php artisan schedule: run
manually in the terminal, everything runs correctly and I receive the email. Using mailtrap.
Then I add this
* * * * * cd / app && php artisan schedule: run >> /app/log.log 2> & 1
in crontab.
I send the command output to the log.log file to be able to view the echo.
and only gets to paint the first echo (step 1) and the rest of the echoes are no longer added to the log.
this is the result shown in the log.
Running scheduled command: Closure
step 1
No error is displayed and it does not send me the emails.
the version of laravel I use is 7.15.0
I hope someone can help me. Thank you.

My Schedular is not calling everyMinute()

My schedular is not calling automatically after every minute.
I have tried following code
protected function schedule(Schedule $schedule)
{
$schedule->command('timestamp:minute')->everyMinute();
}
I need that my schedular will call automatically.
in your terminal, type crontab -e and add below line at the end
* * * * * /usr/bin/php{php_version} /path_to_project/artisan schedule:run >> /dev/null 2>&1
Now, in terminal, go to your project directory and run once
php artisan schedule:run

cron job can not run laravel schedule on godaddy server

I'm trying to build a laravel scheduler to save my data history. I create a command "MisReportBackup". then I add it in the kernel too.
protected $commands = [
'\App\Console\Commands\MisReportBackup',
];
my schedule function is
protected function schedule(Schedule $schedule)
{
$schedule->command('MisReportBackup:MisReport')->dailyAt('16:59');
}
then i create a cron job on server
59 16 * * * cd /home/public_html/outpace-erp-v1.1 && php artisan schedule:run >> /dev/null 2>&1
it's 17:13:58(SGT) but did not work yet.
There's no need to specify the schedule for the cron job. For Laravel's scheduler to work, it has to run every minute.
* * * * php /home/public_html/outpace-erp-v1.1/artisan schedule:run >> /dev/null 2>&1
See the documentation.
* * * * * /usr/local/bin/php /home/technolive/public_html/outpace-erp-v1.1/artisan schedule:run > /dev/null 2>&1
it's work.

task sceduler in laravel 5.6 is not repeating as defined

I defined a task in laravel. first time that i run 'php artisan schedule:run' it works just fine but task is not repeating. just runs one time. i have no idea what is wrong!
$schedule->call(function (){
$users = User::all();
foreach ($users as $user){
$user->type = 'admin';
$user->save();
}
})->everyMinute();
You should run your cron automatically then follow below step:
1) go to your terminal: and run crontab -e command.
2) This will open server crontab file, paste below code inside, save it and exit.
* * * * * php /path/to/artisan schedule:run >> /dev/null 2>&1
Note: path means your project folder path
(i.e * * * * * php /var/www/html/yourproject/artisan schedule:run >> /dev/null 2>&1)

bash command substitution on a script that executes a background task

I'd like to return the results of a script that also kicks off a background task. The command substitution operator waits for the background task, making the call slow. I created the following example to illustrate the problem:
function answer {
sleep 5 &
echo string
}
echo $(answer)
Is there a way to call a command without waiting on any background jobs it creates?
Thanks,
Mark
The problem is that sleep inherits stdout and keeps it open. You can simply redirect stdout:
answer() {
sleep 5 > /dev/null &
echo "string"
}
echo "$(answer)"
If you are intending for the program to continue merrily along in the mean time while the function works, you can just call the function to run in the background.
function answer {
sleep 5
echo Second
}
echo $(answer) &
echo First
The output of which will be
First
Second

Resources