-
Was encountering similar issues as here: but before the upgrade, i deleted those duplicate name device objects (via gui) and recreated them. Then the upgrade/migration went without much issue. When i looked at the container i noticed that it said
These are the other container versions:
I do find ineresting that my netbox container takes almost 2min ( What can i try/check? thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 9 replies
-
figured it out The healthcheck on the netbox service was not functioning, which caused the worker and housekeeper container to NOT run either. Since the healthcheck was
And since we have Very odd that only NOW did I have to do this change. Either-way, all is well in the world. Thanks, |
Beta Was this translation helpful? Give feedback.
-
I have the same problem, which file did you change the ALLOWED_HOST in, I cant find it anywhere? |
Beta Was this translation helpful? Give feedback.
-
it’s an environment variable, so technically docker-compose.yml. If you are not using docker then change your configuration.py file |
Beta Was this translation helpful? Give feedback.
-
I´m using Docker-compose and after the i did a new pulll to update i have the same error with container unhealthy. |
Beta Was this translation helpful? Give feedback.
-
hmmm i´ve resolved the issue by reinstalling the netbox docker-compose and imported the DB.... |
Beta Was this translation helpful? Give feedback.
-
I am running into the same issue here. still not clear. I am using docker-compose. please clarify how exactly to resolve this issue
|
Beta Was this translation helpful? Give feedback.
-
Hello, I had to comment out all health check lines about netbox in docker-compose.yml. Previously I tried to set the curl validation with the external port without success. I installed a fresh virtual machine with Ubuntu 22.04 LTS, Docker and Docker-Compose and the standard default installation (git clone, docker-compose.override.yml, pull and up); and the issue still appeared. |
Beta Was this translation helpful? Give feedback.
figured it out
The healthcheck on the netbox service was not functioning, which caused the worker and housekeeper container to NOT run either.
Since the healthcheck was
curl -f http://localhost:8080/apii/
, I had to change my env variableALLOWED_HOST
fromAnd since we have
http_proxy
environment variables set, i had to setno_proxy=localhost
env variable.Very odd that only NOW did I have to do this change.
Either-way, all is well in the world.
Thanks,
Dave