I am working with Magento 2. In Magento 2 we have to configure Cron to have Index Management. In this regard I set php bin/magento indexer:reindex in server. Now how is it possible for me to know that Cron indexing is working ?? Thanks
Hello foysal,
you can check using MySQL query
SELECT * FROM `cron_schedule` LIMIT 360 , 30
In query result, you can list out the currently running and scheduled job entry with detail.