cancel
Showing results for 
Search instead for 
Did you mean: 

How to be confirmed Cron indexing is working.

   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

How to be confirmed Cron indexing is working.

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

1 REPLY 1

Re: How to be confirmed Cron indexing is working.

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.

 

May a better approach but this one help me to solve my problem.
Thanks.