Question
Cron Jobs with Laravel on Ubuntu 16.10 x64
Hello,
I’m running an Ubuntu 16.10 x64 and have deployed the php Framework Laravel 5.3.28 on the server.
For the most part everything is working as normal however I’m trying to get the crontab to call artisan commands like php artisan schedule:run
so that laravel’s task scheduler can be put to use.
I do not wish to download any extra packages to make this work as I feel there shouldn’t really be a need to since the cron can call, what looks like, any command if properly coded.
What I’m trying to do:
From within the crontab -e
I’m trying to properly write the Ubuntu correct way to call php artisan schedule:run
What I’ve done:
I’ve currently tried multiple different ways of writing this command and nothing is working as noted below:
#Attempt for cron
SHELL=/bin/bash
#PATH=???? <--- Confused if this is even necessary
* * * * * php /path/to/artisan scheduled:run 1>> file.log 2>&1
* * * * * /path/to/ php artisan scheduled:run 1>> file.log 2>&1
* * * * * /path/to/ php artisan scheduled:run >> file.log
* * * * * /path/to/ php artisan scheduled:run 1>> file.log
* * * * * /path/to php artisan schedule:run
* * * * * /usr/bin/php /var/www/artisan scheduled:run 1>> file.log
I’ve gone to multiple resources to try and find the answer but nothing seems to be the answer to my specific problem.
Resources:
- https://laracasts.com/series/intermediate-laravel/episodes/2?autoplay=true
- Itemhttp://laravel.io/forum/03-05-2014-automated-mysql-backups?page=1
- https://laracasts.com/discuss/channels/laravel/setting-up-larvel-cron
- https://community.centminmod.com/threads/how-to-run-a-cron-job-properly.2287/
- https://laravel.com/docs/5.3/scheduling
- https://laracasts.com/lessons/recurring-tasks-the-laravel-way
- https://laracasts.com/index.php/discuss/channels/laravel/laravel-artisan-commands-trough-cron-tab
- https://deploybot.com/guides/deploy-a-laravel-app-to-digitalocean
Conclusion:
At this point I’m stuck beyond stuck. Can someone please help me? All I’m trying to do is call the php artisan command using Ubuntu’s cron and I don’t know the exact way to do it. ANY and all assistance is greatly appreciated.
Thanks in advance,
Happy Holidays!!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×