OpsSquad
Troubleshooting

Troubleshooting

Common issues and how to resolve them

This section provides solutions to common issues you might encounter while using OpsSquad.ai.

Quick Diagnostics

Before diving into specific issues, run these diagnostic checks:

Node Diagnostics

# Check node status
opssquad node status

# Validate installation
opssquad node validate

# View recent logs
opssquad node logs --lines=50

Network Diagnostics

# Test connectivity to OpsSquad.ai
nc -zv socket.opssquad.ai 9000

# Check DNS resolution
nslookup socket.opssquad.ai

Issue Categories

SectionDescription
CLI IssuesProblems with installation, commands, or node management.
Dashboard IssuesProblems with the web interface, login, or squad management.
Chat IssuesProblems with the chat interface, agents not responding, or connectivity.

Most Common Issues

Node Won't Connect

Symptoms: Node starts but shows "Disconnected"

Quick Fix:

  1. Check network access to socket.opssquad.ai:9000
  2. Verify firewall allows outbound TCP on port 9000
  3. Check credentials in configuration file

Detailed solution →

Can't Login to Dashboard

Symptoms: Login page shows error or doesn't redirect

Quick Fix:

  1. Clear browser cache and cookies
  2. Try incognito/private mode
  3. Check if email is verified

Detailed solution →

Chat Not Receiving Responses

Symptoms: Messages sent but no response from agent

Quick Fix:

  1. Check if there's a pending approval
  2. Verify the agent is linked to an online node
  3. Verify the selected squad has active agents
  4. Refresh the page

Detailed solution →

Error Messages

"Connection Refused"

ContextMeaningSolution
CLINetwork blockedCheck firewall
DashboardAPI unreachableCheck status page
ChatWebSocket failedRefresh browser

"Authentication Failed"

ContextMeaningSolution
CLIInvalid API keyRegenerate credentials
DashboardSession expiredLog in again
ChatToken invalidClear cache, re-login

"Insufficient Credits"

ContextMeaningSolution
DeploymentNo creditsTop up wallet
RuntimeCredits exhaustedTop up or wait for grant

Diagnostic Tools

Node Validation

Run a comprehensive check:

opssquad node validate

This checks:

  • Configuration file exists and is valid
  • Node binary is present
  • Network connectivity works
  • Credentials are correct
  • Required permissions exist

Status Check

Get current node state:

opssquad node status

Expected output:

Node Status:  Online
Connection:   Connected
Version:      1.0.0
Uptime:       2h 34m 12s

Log Analysis

View logs for errors:

# View last 100 lines
opssquad node logs

# Stream logs in real-time
opssquad node logs --follow

Look for:

  • ERROR - Critical issues
  • WARN - Potential problems
  • disconnect - Connection issues
  • timeout - Network problems

System Status

Check the OpsSquad.ai platform status:

The status page shows:

  • Platform health
  • Scheduled maintenance
  • Incident history

Getting Help

If you can't resolve the issue:

Support Channels

ChannelBest ForResponse Time
DocumentationSelf-serviceInstant
DiscordCommunity helpMinutes-hours
EmailComplex issues24 hours
Priority SupportEnterprise< 4 hours

Before Contacting Support

Gather this information:

  1. Output of opssquad node validate
  2. Output of opssquad node logs --lines=100
  3. Your operating system and version
  4. Steps to reproduce the issue
  5. Screenshots if applicable

Contact Information

Preventing Issues

Keep Updated

Always run the latest version:

opssquad upgrade

Updates include:

  • Bug fixes
  • Security patches
  • New features
  • Performance improvements

Monitor Health

Set up proactive monitoring:

  • Enable status alerts in Settings
  • Monitor node connection status
  • Check agent-node link status
  • Review logs periodically

Follow Best Practices

  • Use strong, unique credentials
  • Keep API keys secure
  • Test in staging before production
  • Document your configurations

On this page