Skip to main content

Quick Troubleshooting

Quick Troubleshooting

The 10 most common issues and their fixes. For deeper diagnostics, use the Concierge assistant (Chat tab) with terminal access enabled.


1. Dashboard won't load

Cause: QUI Core is not running.
Fix: Launch the QUI Core AppImage, or start QUI Core manually.


2. "Concierge Unavailable" error

Cause: QUI Core can't reach the central hub to fetch Concierge configuration.
Fix: Check your internet connection. If the hub is temporarily down, wait a few minutes. See Concierge Not Working for the full checklist.


3. No AI response / empty responses

Cause: No account balance, or authentication tokens expired.
Fix: Check the Billing tab for your balance. If balance is fine, log out and log back in to refresh tokens.


4. SSL certificate error in browser

Cause: QUI Core uses self-signed SSL certificates. Browsers show warnings for these.
Fix: Click "Advanced" → "Proceed" in the browser warning. This is expected for self-signed certs. If certs are missing or expired, regenerate them — see Installation for details.


5. Services showing as offline

Cause: Docker containers stopped or failed to start.
Fix: Check the Services tab for specific service status. Most services restart automatically via Docker's restart policy. If a service is stuck, it usually needs a manual rebuild:

  1. Open a terminal
  2. Navigate to the service directory (e.g., Qui_Core_Services/Anima_Service/)
  3. Run: docker compose up -d --build

6. Trust score too low for auto-login

Cause: Failed login attempts reduce trust score. Below 75 = no auto-login. Below 50 = full login required.
Fix: Log in successfully a few times. Each success adds +5 to your trust score. Complete CORE Connect to get a +10 verified action bonus. See First Login.


7. Terminal commands blocked

Cause: The command isn't in your active preset's allowed list.
Fix: Switch to a preset that includes the command (e.g., Developer for docker commands), or add the command to your manual whitelist in Terminal Settings. See Terminal Access.


8. Characters not responding in Strings

Cause: Qui Anima service is down — all character-based AI requires Anima.
Fix: Check if Anima is running: curl -s http://localhost:10030/api/v1/health. If down, rebuild: cd Qui_Core_Services/Anima_Service && docker compose up -d --build.


9. Conversations not loading in Strings

Cause: Memory Service is down — Strings stores all messages there.
Fix: Check if Memory is running: curl -s http://localhost:8001/health. If down, restart: cd Qui_Core_Services/Memory_Service && docker compose up -d.


10. Docker builds fail with "no space left"

Cause: Docker images and build cache have accumulated.
Fix: Clean up unused Docker resources:

docker system prune -f

For aggressive cleanup (removes all unused images — requires rebuilds):

docker image prune -a -f

Need More Help?

  • Use Concierge — open the Chat tab and ask. With terminal access enabled, Concierge can inspect your system and provide specific diagnostics.
  • Check the Services tab — shows real-time health status of all services.
  • Check service logs — for Docker services: docker logs <container-name>. See Health Checks for container names.
Updated on Mar 21, 2026