Fixpanic
Troubleshooting

Troubleshooting

Common issues and how to resolve them

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

Quick Diagnostics

Before diving into specific issues, run these diagnostic checks:

Agent Diagnostics

# Check agent status
fixpanic agent status

# Validate installation
fixpanic agent validate

# View recent logs
fixpanic agent logs --lines=50

Network Diagnostics

# Test connectivity to FixPanic
nc -zv socket.fixpanic.com 9000

# Check DNS resolution
nslookup socket.fixpanic.com

Issue Categories

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

Most Common Issues

Agent Won't Connect

Symptoms: Agent starts but shows "Disconnected"

Quick Fix:

  1. Check network access to socket.fixpanic.com: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 selected cluster has active agents
  3. 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

Agent Validation

Run a comprehensive check:

fixpanic agent validate

This checks:

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

Status Check

Get current agent state:

fixpanic agent status

Expected output:

Agent Status: Active
Connection:   Connected
Version:      1.0.0
Uptime:       2h 34m 12s

Log Analysis

View logs for errors:

# View last 100 lines
fixpanic agent logs

# Stream logs in real-time
fixpanic agent logs --follow

Look for:

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

System Status

Check the FixPanic 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 fixpanic agent validate
  2. Output of fixpanic agent 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:

fixpanic upgrade

Updates include:

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

Monitor Health

Set up proactive monitoring:

  • Enable status alerts in Settings
  • Monitor agent connection 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