Find solutions to common problems and learn how to debug issues with Nexus.
nexus --log debugcurl http://localhost:8000/healthcurl http://localhost:8000/llm/openai/v1/models| Code | Meaning | Common Causes |
|---|---|---|
| 401 | Unauthorized | Invalid or missing authentication token |
| 403 | Forbidden | Insufficient permissions or CSRF failure |
| 404 | Not Found | Model not configured or endpoint doesn't exist |
| 429 | Too Many Requests | Rate limit exceeded |
| 500 | Internal Server Error | Server configuration error or provider issue |
| 502 | Bad Gateway | Downstream server unreachable |
| 503 | Service Unavailable | Server overloaded or starting up |
- Check the logs with
--log debugflag - Review configuration for typos or missing values
- Test components individually before full integration
- Search existing issues on GitHub
- Report new issues with reproduction steps
- Check best practices to avoid common issues