How to enable scheduler
By Annor Amapolley on January 3, 2025
ExpertThe scheduler in ERPNext is a critical feature that automates background tasks such as sending emails, generating reports, and performing scheduled jobs. If the scheduler is paused, it can prevent these tasks from running. You can re-enable the scheduler using the following command:
bench --site site_name set-config pause_scheduler 0
Steps to Enable the Scheduler:
- Open your terminal and navigate to the ERPNext installation directory.
- Replace
site_name
with the name of your site (e.g.,myerp.site
). - Run the command above to set the
pause_scheduler
configuration to0
, which unpauses the scheduler.
Verify the Scheduler Status:
After enabling the scheduler, you can verify its status with:
bench --site site_name show-config
Ensure pause_scheduler
is set to 0
in the output.
Was this article helpful?
More articles on Erpnext