Magento 2 – Cron Jobs Showing Pending Status

magento-2.1magento-2.1.7magento2

its been 2 days now all cron jobs and cron_schedual showing pending status.
Any solution to run them normally ?

Best Answer

It is showing under pending status, as seems cron is not working properly make sure cron is setup and scheduled on your server.

If you have server cpanel access, then Login to cpanel / server and search for cron_tabs and see if cron is set-up and path are defined accurately.

However if you have also/only SSH access you can still setup by follow commands / steps which are listed on magento dev docs:

http://devdocs.magento.com/guides/v2.0/config-guide/cli/config-cli-subcommands-cron.html

NOTE if you are using php multi-version on your server then you should execute commands with proper php library i.e :

/usr/bin/php7.0 bin/magento

hope it will solve the issue.

Related Topic