-
Notifications
You must be signed in to change notification settings - Fork 264
13. Troubleshooting
Common issues and their solutions when running RedAmon.
Check the status of all containers:
docker compose psIf a service is in "restarting" or "exited" state, check its logs:
docker compose logs <service-name>Common services to check: webapp, agent, recon-orchestrator, neo4j, postgres
RedAmon with the full GVM stack requires significant resources. If containers are being killed:
- Check Docker's memory allocation (Docker Desktop > Settings > Resources)
- Increase to at least 8 GB RAM (16 GB recommended for GVM)
- Or run without GVM for a lighter footprint:
docker compose up -d postgres neo4j recon-orchestrator kali-sandbox agent webapp
If a port is already in use on your host:
# Check what's using port 3000
lsof -i :3000You can change ports in .env:
WEBAPP_PORT=3001
NEO4J_HTTP_PORT=7475
POSTGRES_PORT=5433The first GVM startup requires a ~30 minute feed synchronization to download 170,000+ NVTs. This is normal and only happens once.
Monitor progress:
docker compose logs -f gvmdThe GVM scan button requires:
- Reconnaissance must have completed for the project (GVM needs IP/hostname data)
- The GVM stack must be running
- Stealth mode must be disabled (GVM generates active probes)
Default: admin / admin (auto-created on first start)
To change:
docker compose exec -u gvmd gvmd gvmd --user=admin --new-password='<new-password>'Check the WebSocket connection indicator in the AI Agent drawer:
- Green WiFi icon = connected
- Red WiFi icon = disconnected
If disconnected:
- Check the agent container is running:
docker compose ps agent - Check agent logs:
docker compose logs -f agent - Try refreshing the page
- Restart the agent:
docker compose restart agent
If the agent seems stuck:
- Click Stop to halt the current operation
- Check agent logs for errors:
docker compose logs -f agent - Click Resume to continue, or start a new conversation
If the model selector shows no models or specific providers are missing:
- Check that API keys are set correctly in
.env - Restart the agent container:
docker compose restart agent - Check agent logs for API key errors:
docker compose logs agent | grep -i "error\|key\|auth"
If the reconnaissance scan appears stuck:
- Check the recon orchestrator logs:
docker compose logs -f recon-orchestrator - Check if the recon container is running:
docker compose ps - Some phases (especially Nuclei and Katana) can take a long time on large targets
After running recon, if the graph is empty:
- Verify the target domain is accessible
- Check the recon JSON output exists:
ls recon/output/ - Verify "Update Graph Database" is enabled in project settings
- Check Neo4j is running:
docker compose logs neo4j
docker compose logs postgresIf corrupt or needs reset:
docker compose down
docker volume rm redamon_postgres_data
docker compose up -dWarning: This deletes all users, projects, and settings.
docker compose logs neo4jVerify the password in .env matches what Neo4j expects. If Neo4j was initialized with a different password, you may need to reset the volume:
docker compose down
docker volume rm redamon_neo4j_data
docker compose up -dWarning: This deletes all graph data (recon results, exploit records, etc.).
Python services (agent, recon-orchestrator, kali-sandbox) have source code volume-mounted but cache modules at import time. After modifying .py files:
docker compose restart agent # AI agent
docker compose restart recon-orchestrator # Recon orchestrator
docker compose restart kali-sandbox # MCP tool serversFor the Next.js webapp in production mode, you need to rebuild:
docker compose build webapp
docker compose up -d webappFor development mode (hot-reload):
docker compose -f docker-compose.yml -f docker-compose.dev.yml up -dTo completely reset RedAmon and start fresh:
# Stop everything, remove images and all data volumes
docker compose --profile tools down --rmi local --volumes --remove-orphansThen rebuild and start:
docker compose --profile tools build
docker compose up -dWarning: This destroys ALL data — users, projects, graph data, scan results, and conversations.
- GitHub Issues: github.com/samugit83/redamon/issues — report bugs or request features
-
Service logs:
docker compose logs -f <service>— always check logs first -
Docker status:
docker compose ps— verify all containers are healthy
User Guide
- Getting Started
- User Management
- Creating a Project
- The Graph Dashboard
- Running Reconnaissance
- GVM Vulnerability Scanning
- GitHub Secret Hunting
- AI Agent Guide
- CypherFix — Automated Remediation
Reference
- Project Settings Reference
- AI Model Providers
- Attack Surface Graph
- Data Export & Import
- EvoGraph — Attack Chain Evolution
- Attack Paths
Help