-
Hey Everyone. I'm installing NETBOX in a RHEL 8 Server using apache HTTPD as reverse proxy but i cant connect to login page. In the web browser i keep getting a 502 Proxy Error. Searching for logs in /etc/httpd/logs/error_log i get the following log: AH00898: Error reading from remote server returned by /favicon.ico All services are running properly, am i missing something? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
That generally means that the Netbox service isn't running properly. Check the output of:
and check if there are any errors. If it claims these are running, then check tcpdump for traffic between the Apache proxy and the Netbox gunicorn process:
(then try to access the web interface while this is running) Don't worry too much about favicon.ico - it sounds like you have a more important issue to fix. |
Beta Was this translation helpful? Give feedback.
Hmm... so the HTTP GET request is being sent to 127.0.0.1:8001, but the gunicorn server is dropping the request on the floor without responding.
Can you share your
/opt/netbox/gunicorn.py
and your/etc/systemd/system/netbox.service
? Also, is there anything else that you've changed from defaults in your configuration.py (e.g. authentication?)