Product
Troubleshooting
Troubleshooting
Common issues and how to fix them.
Agent Not Responding
Check the Health page (🏥) — it runs diagnostics on all services.
If the gateway is down:
- Go to the Dashboard and click Restart
- Or use the Terminal:
sudo systemctl restart openclaw-gateway
Can’t Connect to Chat
The web chat (Control Panel) requires HTTPS. If you haven’t set up SSL yet:
- Go to Settings → SSL Setup
- Enter your domain name
- Make sure your DNS points to your VPS IP
- Click Setup SSL
502 Bad Gateway
This usually means the web UI is restarting. Wait 10 seconds and refresh. If it persists:
- SSH in:
sudo systemctl restart easyclaw-webui - Check logs:
sudo journalctl -u easyclaw-webui -n 50
Locked Out of Web UI
- SSH in with your
easyvpspassword - Run:
sudo /opt/easyclaw/webui/bin/reset-password.sh - Follow the prompts to set a new password
Out of Memory (OOM)
Signs: services crash, VPS becomes unresponsive.
Quick fix: Add more swap space from Settings, or via SSH:
sudo swapoff /swapfile
sudo fallocate -l 2G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
Email Not Working
- Check Channels → Email → verify credentials
- The system log shows
✓ Connection verifiedor✗ Connection FAILEDat startup - Check logs:
sudo journalctl -u easyclaw-webui | grep email-poller
Telegram Bot Not Responding
- Verify the bot token in Channels → Telegram
- Make sure your Telegram user ID is correct
- Check if the gateway is running (Dashboard)
- Try messaging the bot again — it may take a moment after a restart
Update Failed
- Click Rollback in Settings to restore the previous version
- Or SSH in:
sudo /opt/easyclaw/webui/bin/rollback.sh
SSH Locked Out (Banned by fail2ban)
If you got banned by fail2ban:
- Wait 10 minutes (bans are temporary by default)
- Or ask someone with access to unban you from the Security page
- Or use the easyDNS VPS console to run:
sudo fail2ban-client set sshd unbanip YOUR_IP