I’m experiencing a 503 service unavailable error when trying to access my web application. The Apache error logs indicate connection issues to my backend service.
Error details from the logs:
[Mon Aug 15 09:23:12.789456 2023] [proxy:error] [pid 12345:tid 140567891234567]
Connection refused: AH00957: HTTP: attempt to connect to [::1]:8080 (backend-server) failed
[Mon Aug 15 09:23:12.789523 2023] [proxy:error] [pid 12345:tid 140567891234567]
AH00959: app-proxy connection backend disabling worker for (backend-server) for 60s
[Mon Aug 15 09:23:12.789531 2023] [proxyhttp:error] [pid 12345:tid 140567891234567]
[client 192.168.1.100:45678] AH01114: HTTP: failed to make connection to backend: backend-server
What I’ve checked:
- The Apache service is active
- Verified Node.js processes with
ps aux | grep node
, but only see the grep command itself - Users can log into the dashboard but are stuck there
Current state:
- The browser shows a 503 error
- Users are still on the login page
- It seems that the backend application is down
I have tried different solutions online, but nothing has resolved the issue. It appears the backend process is not running. How should I approach troubleshooting this connection problem to restore functionality to my application?