Magento 1 – How to Check Running Cron Jobs

cronmagento-1

How can I check the cron jobs running on my site on terminal?

Magento ver. 1.6.2.0

Best Answer

if you are using Linux server

pgrep cron 

or

/etc/init.d/crond status 

It will show the cron id. if cron id will show cron is running fine. else cron is dead are not running.

otherwise please install aoe scheduler. it will show the heartbeat of cron running.

Hope it will helpful for you.

Related Topic