I have created some commands and scheduled them to work periodically. A few months later I noticed that there is no cron job running but commands run without problem.
In the documentation, it says that I need to set a cron job in the operating system for scheduled commands to run. I couldn't find any. But artisan queue:listen command is run as daemon. Could this command be running the scheduled jobs as well?
Laravel 5.1 on Ubuntu 14.04
sudo ls -al /var/spool/cron/crontabs/? - maiorano84sudo grep -rl "artisan" /var/spool/cron/crontabs/. I haven't tested that myself, but something like that might help. - maiorano84sudo cat /var/spool/cron/crontabs/www-data- maiorano84