Scheduled jobs not running – manual execution works #1665
-
|
Netbox (5.2.13) Is there something I have to enable? (using Netbox in docker) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Scheduled jobs and data source syncs depend on the NetBox background worker, not only the web container. In the NetBox Docker compose file, the worker is a separate docker compose ps netbox-worker
docker compose logs --tail=200 netbox-worker
docker compose ps redis redis-cacheAlso make sure the worker is using the same NetBox image, plugin install, plugin config, and environment as the web container. Plugin jobs can appear fine when run manually in the web process but fail silently or never execute if the worker container does not have the same plugin/config or cannot connect to Redis. |
Beta Was this translation helpful? Give feedback.

Scheduled jobs and data source syncs depend on the NetBox background worker, not only the web container.
In the NetBox Docker compose file, the worker is a separate
netbox-workerservice runningmanage.py rqworker. If manual execution works but scheduled jobs do not, I would check the worker first:Also make sure the worker is using the same NetBox image, plugin install, plugin config, and environment as the web container. Plugin jobs can appear fine when run manually in the web process but fail silently or never execute if the worker container does not have the same plugin/con…