Skip to content

Latest commit

Β 

History

History
26 lines (16 loc) Β· 907 Bytes

File metadata and controls

26 lines (16 loc) Β· 907 Bytes

πŸ› οΈ Troubleshooting Guide

🚫 Agent Startup Issue: Failed to register with backend server

Cause: The agent cannot connect to the backend server to register.

Quick Checks:

  • βœ… Backend is running and listening (default: 8096)
  • βœ… BACKEND_URL is reachable and correct (e.g. http://localhost:8096)
  • βœ… Required env vars: BACKEND_URL, PIPELINE_NAME, STARTED_BY
  • βœ… Agent host can reach backend (try curl)
  • βœ… Check agent and backend logs for detailed errors

Tip: Use journalctl -u <agent-service> if running as a systemd service.


πŸ”’ Port Binding Error: bind: address already in use :3421

Cause: Port 3421 is already in use by another process on the system.

Fix:

  • βœ… Ensure no other service (like nginx or apache) is occupying port 3421
  • βœ… Use sudo lsof -i :3421 or sudo netstat -tulpn | grep :3421 to identify the process