Troubleshooting
Common issues and their solutions when running Archon.
Bot Not Responding
Section titled “Bot Not Responding”Check if the application is running:
If running locally:
# Check the server processcurl http://localhost:3090/health# Expected: {"status":"ok"}If running via Docker:
docker compose ps# Should show 'app' with state 'Up'Check application logs:
Local:
# Server logs are printed to stdout when running `bun run dev`Docker:
docker compose logs -f appVerify bot token:
# In your .env filecat .env | grep TELEGRAM_BOT_TOKENTest with health check:
curl http://localhost:3090/health# Expected: {"status":"ok"}Database Connection Errors
Section titled “Database Connection Errors”Check database health:
curl http://localhost:3090/health/db# Expected: {"status":"ok","database":"connected"}For SQLite (default):
SQLite requires no setup. The database is created automatically at ~/.archon/archon.db. If you see errors, check that the ~/.archon/ directory exists and is writable.
For remote PostgreSQL:
# Verify DATABASE_URLecho $DATABASE_URL
# Test connection directlypsql $DATABASE_URL -c "SELECT 1"Verify tables exist (PostgreSQL):
psql $DATABASE_URL -c "\dt"
# Should show: remote_agent_codebases, remote_agent_conversations, remote_agent_sessions,# remote_agent_isolation_environments, remote_agent_workflow_runs, remote_agent_workflow_events,# remote_agent_messagesClone Command Fails
Section titled “Clone Command Fails”Verify GitHub token:
cat .env | grep GH_TOKEN# Should have both GH_TOKEN and GITHUB_TOKEN setTest token validity:
# Test GitHub API accesscurl -H "Authorization: token $GH_TOKEN" https://api.github.com/userCheck workspace permissions:
The workspace directory is ~/.archon/workspaces/ by default (or /.archon/workspaces/ in Docker). Make sure it exists and is writable.
Try manual clone:
git clone https://github.com/user/repo ~/.archon/workspaces/test-repoGitHub Webhook Not Triggering
Section titled “GitHub Webhook Not Triggering”Verify webhook delivery:
- Go to your webhook settings in GitHub
- Click on the webhook
- Check “Recent Deliveries” tab
- Look for successful deliveries (green checkmark)
Check webhook secret:
cat .env | grep WEBHOOK_SECRET# Must match exactly what you entered in GitHubVerify ngrok is running (local dev):
# Check ngrok statuscurl http://localhost:4040/api/tunnels# Or visit http://localhost:4040 in browserCheck application logs for webhook processing:
Local:
# Look for GitHub-related log lines in server outputDocker:
docker compose logs -f app | grep GitHubPort Conflicts
Section titled “Port Conflicts”Check if port 3090 is already in use:
macOS/Linux:
lsof -i :3090Windows:
netstat -ano | findstr :3090You can override the port with the PORT environment variable:
PORT=4000 bun run devWhen running in a git worktree, Archon automatically allocates a unique port (3190-4089 range) so you don’t need to worry about conflicts with the main instance.
Stale Processes (Windows)
Section titled “Stale Processes (Windows)”Symptom: The Web UI shows a spinning indicator with no response, and the terminal shows no activity — even though you’ve started bun run dev.
Cause: A previous bun or node process is still holding the port. This is common on Windows when the terminal is closed without stopping the server.
Diagnose:
netstat -ano | findstr :3090Note the PID in the last column, then verify which process it is:
tasklist | findstr 12345(Replace 12345 with the actual PID.)
Fix — kill by PID (preferred):
taskkill /F /PID 12345If multiple stale processes are present:
taskkill /F /IM bun.exetaskkill /F /IM node.exeSee also: Windows Setup for more Windows-specific guidance.
E2E Testing / agent-browser
Section titled “E2E Testing / agent-browser”agent-browser: command not found:
agent-browser is an optional external dependency — see the E2E Testing Guide for installation.
npm install -g agent-browseragent-browser installagent-browser daemon fails to start (Windows):
agent-browser has a known Windows bug. Use WSL as a workaround — see E2E Testing on WSL.
agent-browser daemon fails to start (macOS/Linux):
Kill stale daemons and retry:
pkill -f daemon.jsagent-browser open http://localhost:3090Docker
Section titled “Docker”These issues are specific to running Archon inside Docker containers.
Container Won’t Start
Section titled “Container Won’t Start”Check logs for specific errors:
docker compose logs appVerify environment variables:
# Check if .env is properly formatteddocker compose configRebuild without cache:
docker compose build --no-cachedocker compose up -dIf using the with-db profile, add --profile with-db to the above commands.
Docker Database Issues
Section titled “Docker Database Issues”For local PostgreSQL (with-db profile):
# Check if postgres container is runningdocker compose --profile with-db ps postgres
# Check postgres logsdocker compose logs -f postgres
# Test direct connectiondocker compose exec postgres psql -U postgres -c "SELECT 1"Verify tables exist (Docker PostgreSQL):
docker compose exec postgres psql -U postgres -d remote_coding_agent -c "\dt"
# Should show: remote_agent_codebases, remote_agent_conversations, remote_agent_sessions,# remote_agent_isolation_environments, remote_agent_workflow_runs, remote_agent_workflow_events,# remote_agent_messagesDocker Clone Issues
Section titled “Docker Clone Issues”Check workspace permissions inside the container:
docker compose exec app ls -la /.archon/workspacesTry manual clone inside the container:
docker compose exec app git clone https://github.com/user/repo /.archon/workspaces/test-repo