Skip to main content

Quick Fixes

”Run diagnostics”

The installer ships with a doctor script that checks the stack and common misconfigurations.

”I can’t access the web interface”

  1. Check if the containers are running:
  1. Verify the ports are correctly mapped:
  1. Check the web container logs:

“Edge Runtime errors in kodus-web logs”

If you see errors like A Node.js API is used ... not supported in the Edge Runtime (often with an axios import trace), part of the web app is running in the Edge Runtime, which does not support Node.js APIs.
  1. Update to the latest kodus-web image (re-run the installer or run docker-compose pull kodus-web and docker-compose up -d).
  2. If you are building from source, make sure auth/server routes run on the Node.js runtime (set export const runtime = "nodejs" and avoid runtime = "edge" on those routes).
  3. Rebuild and restart the container.

”Git webhooks aren’t working”

  1. Verify your domain setup:
  1. Check the webhooks logs for webhook attempts:
  1. Verify your reverse proxy configuration:

“Database connection issues”

  1. Check database container status:
  1. Verify database logs:
  1. Test database connections:

“Migration failed due to missing vector type”

If you encounter the error “type vector does not exist” during migrations, this is because the pgvector extension is not enabled in your PostgreSQL database. Here’s how to fix it:
  1. Connect to your PostgreSQL database:
  1. Enable the pgvector extension:
  1. After enabling the extension, try running your migrations again:
If you’re still experiencing issues, you can verify the extension is properly installed:

Common Problems

RabbitMQ Issues

If you’re seeing message queue errors:
  1. Check RabbitMQ status:
  1. Access the management console at http://localhost:15672 to verify queues and connections
  2. Restart the service if needed:

Resource Problems

If services are slow or crashing:
  1. Check resource usage:
  1. Verify container limits:
  1. Adjust resource limits in docker-compose.yml if needed

Getting Help

What to Include in Support Requests

  • The exact error message
  • Relevant logs from affected services
  • Your deployment method (CLI, VM, etc.)
  • Steps to reproduce the issue

Where to Get Help