List cron jobs in Magento 2

You can run n98-magerun2 command line utility to list all cronjobs.

If you run the following command in your magento installation, it will display all the cronjobs available in your magento.

n98-magerun2 sys:cron:list

For more detailed tutorial, please visit the following link.

https://medium.com/@inanbunyamin90/how-to-list-all-cron-jobs-in-magento-2-de72379ec711


I decided to get cron jobs list by performing following simple query on a database:

select job_code from cron_schedule GROUP BY job_code;

but it's neither handy nor detailed. Maybe somebody has a better idea...

Tags:

Cron

Magento2