Troubleshooting
Daemon Issues
Section titled “Daemon Issues”Daemon Won’t Start
Section titled “Daemon Won’t Start”pgrep clauderon # check for existing daemonlsof -i :3030 # check port in useRUST_LOG=clauderon=debug clauderon daemon # verbose loggingrm ~/.clauderon/db.sqlite && clauderon daemon # reset stateCan’t Connect to Daemon
Section titled “Can’t Connect to Daemon”curl http://localhost:3030/health # verify daemon runningpkill clauderon && clauderon daemon # restartSession Issues
Section titled “Session Issues”Session Won’t Create
Section titled “Session Won’t Create”zellij --version # check Zellijdocker info # check Dockerdf -h ~/.clauderon # check disk spaceRUST_LOG=clauderon=debug clauderon create --repo ~/project --prompt "test"Session Not Appearing
Section titled “Session Not Appearing”clauderon list --archived # check archivedclauderon reconcile # reconcile databasesqlite3 ~/.clauderon/db.sqlite "SELECT * FROM sessions" # inspect DBCan’t Attach to Session
Section titled “Can’t Attach to Session”clauderon listzellij list-sessions # Zellij backenddocker ps -a | grep clauderon # Docker backendclauderon reconcileDocker Backend
Section titled “Docker Backend”Container Won’t Start
Section titled “Container Won’t Start”docker info # Docker running?groups | grep docker # in docker group?docker pull ghcr.io/anthropics/claude-code:latest # pull imagedocker system df # disk spaceContainer Network Issues
Section titled “Container Network Issues”docker exec <container> curl http://host.docker.internal:3030/healthOut of Disk Space
Section titled “Out of Disk Space”docker system dfdocker system prune -aclauderon clean-cache --forceZellij Backend
Section titled “Zellij Backend”Session Not Found
Section titled “Session Not Found”zellij list-sessionszellij kill-session <name> # kill orphanedclauderon reconcileEnvironment Variables Missing
Section titled “Environment Variables Missing”Delete and recreate session (daemon must be running during creation).
Performance Issues
Section titled “Performance Issues”| Problem | Solution |
|---|---|
| Slow startup | Use Zellij; Docker: --pull-policy never with cached images |
| High memory | Archive old sessions; restart daemon |
| Slow Web UI | Archive sessions with large chat histories; clear browser cache |
Getting Help
Section titled “Getting Help”RUST_LOG=clauderon=debug clauderon daemonReport issues at GitHub Issues with: clauderon version, OS, backend type, error messages, relevant logs.