
Hallo Dashboard-Problemlöser — wenn du auf eine leere Seite, "Verbindung verweigert" oder "unauthorized"-Fehler starrst, während das OpenClaw-Gateway definitiv läuft, dann war ich in der gleichen Situation.
Letzte Woche habe ich genau dieses Problem in vier Setups debuggt: lokale Entwicklung auf einem Mac, Docker auf Ubuntu, nginx Reverse Proxy und eine über Tailscale freigegebene Instanz. Jedes einzelne hatte einen anderen Fehlermodus — aber alle führten auf dieselben fünf Hauptursachen zurück.
Das HTML lädt. DevTools zeigt WebSocket-Handshake-Fehler. Gateway-Logs sagen nichts Nützliches. Du bist dir nicht sicher, ob es Authentifizierung, Netzwerk oder Konfigurationskorruption ist.
Hier ist, was tatsächlich schiefgeht: Fehlende WebSocket-Upgrade-Header in deinem Proxy, Docker NAT behandelt localhost als extern, Authentifizierungs-Tokens werden nicht in localStorage gespeichert oder Portkonflikte von alten Clawdbot/Moltbot-Diensten, die noch laufen.
Dieser Leitfaden führt durch den Diagnoseablauf, den ich nach mehrmaligem Beheben dieser Probleme entwickelt habe. Beginne hier, folge den Überprüfungen und entweder wird das Dashboard funktionieren oder du weißt genau, was zu berichten ist.

Before diving into proxies and ports, verify the gateway is actually functional.
# Check gateway status
openclaw status
# If using systemd
systemctl --user status openclaw-gateway
# Docker users
docker ps | grep openclaw-gateway
What you're looking for:
running or activeIf it's not running or restarting constantly, stop here and fix the gateway install issues first.
Test the WebSocket endpoint directly:
# Install wscat if you don't have it
npm install -g wscat
# Test connection (replace with your actual token)
wscat -c "ws://127.0.0.1:18789/?token=YOUR_TOKEN_HERE"
Possible outcomes:
If wscat connects but the browser doesn't, the issue is either CORS, proxy config, or browser security policy.
Look at recent logs:
# View last 50 log lines
openclaw logs --limit 50
# Docker
docker logs openclaw-gateway --tail 50
# Look for WebSocket handshake attempts
openclaw logs | grep -E 'ws\]|websocket|handshake'
Key patterns:
[ws] accepted → Connection succeeded[ws] closed before connect ... code=1008 reason=pairing required → Auth mismatch[ws] closed before connect ... code=1008 reason=unauthorized: gateway token missing → Token not reaching gatewayOrigin http://... is not allowed → CORS issueSymptom: Gateway runs fine via CLI, but browser can't connect to 127.0.0.1:18789.
Cause: Gateway bound to a Tailscale IP, VPN interface, or external IP instead of loopback.
This is Issue #1380 — when Tailscale is active, the gateway sometimes binds to 100.x.x.x instead of 127.0.0.1. Browser WebSocket connections to Tailscale IPs fail.
Diagnose:
# Check what interface the gateway bound to
openclaw status
# Or inspect the actual listening socket
sudo lsof -i :18789
# Look at the "NAME" column - should show 127.0.0.1:18789
Fix:
Force loopback binding in config (~/.openclaw/config.json):
{
"gateway": {
"bind": "loopback",
"port": 18789
}
}
Valid bind options:
loopback → 127.0.0.1 only (default, safest)lan → 0.0.0.0 (all interfaces, requires auth)tailnet → Tailscale IPAfter changing bind, restart:
systemctl --user restart openclaw-gateway
# or
docker compose restart openclaw-gateway
Symptom: Gateway won't start, logs show EADDRINUSE.
Cause: Old Clawdbot/Moltbot gateway still running, or another service using 18789.
Diagnose:
# Find what's using the port
sudo lsof -i :18789
# Or
sudo ss -tlnp | grep 18789
Fix Option A: Stop Conflicting Service
# Stop old Clawdbot
systemctl --user stop clawdbot-gateway
# Kill the process if needed
sudo kill -9 <PID>
Fix Option B: Change OpenClaw Port
In ~/.openclaw/config.json:
{
"gateway": {
"port": 18790
}
}
Update Docker compose if using containers:
ports:
- "127.0.0.1:18790:18790"
Then access dashboard at http://127.0.0.1:18790/.
Symptom: Running gateway in Docker Desktop on Windows/Mac, browser shows "pairing required" even with correct token.
Cause: Docker's NAT networking makes the gateway see connections from 172.18.0.1 instead of 127.0.0.1. Gateway treats this as an external connection requiring node pairing.
Diagnose:
Check gateway logs for:
[ws] closed before connect conn=... remote=172.18.0.1 ... code=1008 reason=pairing required
If you see remote=172.18.0.1 but you're connecting from 127.0.0.1, this is the issue.
Fix:
Add trusted proxies to your config:
{
"gateway": {
"trustedProxies": ["172.18.0.0/16", "172.17.0.0/16"]
}
}
Or run gateway with --bind lan and enforce token auth:
{
"gateway": {
"bind": "lan",
"auth": {
"mode": "token",
"token": "your-secret-token"
}
}
}
Better fix for Windows/Mac: Run gateway natively instead of in Docker to get real localhost connections.
If you're exposing OpenClaw through nginx, Caddy, or another reverse proxy, WebSocket support needs explicit configuration.
The dashboard uses WebSockets for real-time communication. Standard HTTP proxying breaks this.
Minimal working config:
server {
listen 443 ssl;
server_name openclaw.yourdomain.com;
# SSL certs
ssl_certificate /path/to/cert.pem;
ssl_certificate_key /path/to/key.pem;
location / {
proxy_pass http://127.0.0.1:18789;
# Critical for WebSockets
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
# Pass through client info
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# WebSocket timeouts
proxy_read_timeout 86400;
proxy_send_timeout 86400;
}
}
Common nginx mistakes:
proxy_http_version 1.1 → WebSocket upgrade failsUpgrade and Connection headers → Handshake rejectedDetailed nginx reverse proxy guide: nginx WebSocket proxying
Caddy handles WebSockets automatically, but you still need proper config:
openclaw.yourdomain.com {
reverse_proxy 127.0.0.1:18789
}
That's it. Caddy auto-detects the WebSocket upgrade and adjusts timeouts.
If using subpath:
yourdomain.com {
reverse_proxy /openclaw/* 127.0.0.1:18789
}
Then access via https://yourdomain.com/openclaw/.
Debugging Caddy WebSocket issues:
Enable verbose logging:
openclaw.yourdomain.com {
log {
output file /var/log/caddy/openclaw.log
level DEBUG
}
reverse_proxy 127.0.0.1:18789
}
Check for websocket upgrade in logs. If missing, Caddy isn't detecting the upgrade request.
Less common but occasionally used:
<VirtualHost *:443>
ServerName openclaw.yourdomain.com
SSLEngine On
SSLCertificateFile /path/to/cert.pem
SSLCertificateKeyFile /path/to/key.pem
# Enable proxy modules
# a2enmod proxy proxy_http proxy_wstunnel rewrite
ProxyPreserveHost On
# WebSocket tunnel
RewriteEngine On
RewriteCond %{HTTP:Upgrade} =websocket [NC]
RewriteRule /(.*) ws://127.0.0.1:18789/$1 [P,L]
# Regular HTTP proxy
ProxyPass / http://127.0.0.1:18789/
ProxyPassReverse / http://127.0.0.1:18789/
</VirtualHost>
Enable required modules:
sudo a2enmod proxy proxy_http proxy_wstunnel rewrite
sudo systemctl restart apache2
Symptom: Dashboard loads over HTTPS but WebSocket connection fails with mixed content error.
Cause: Browser blocks ws:// (non-secure WebSocket) when page is loaded over https://.
Fix:
Use wss:// (WebSocket Secure) behind your reverse proxy.
Your nginx/Caddy terminates SSL and forwards to http://127.0.0.1:18789, but the browser needs to connect via wss://.
Example flow:
wss://openclaw.yourdomain.com/ → nginx with SSLws://127.0.0.1:18789/ → gateway (local, no SSL needed)The dashboard auto-detects this if you access it via HTTPS URL.
Symptom: Browser console shows CORS policy: No 'Access-Control-Allow-Origin' header.
Cause: Accessing dashboard from a different domain than the gateway expects.
Context: As of OpenClaw's security updates, the Control UI has stricter origin validation.
Fix:
If your dashboard is at https://openclaw.example.com but gateway config doesn't know about it:
{
"gateway": {
"cors": {
"origins": ["https://openclaw.example.com"]
}
}
}
Security note: Don't use "origins": ["*"] in production. This exposes your gateway to external access vulnerabilities.
Symptom: Dashboard keeps asking for token every time you reload.
Cause: Browser's localStorage API blocked or cleared.
Diagnose:
Open DevTools → Application → Local Storage → http://127.0.0.1:18789
Look for key: openclaw-gateway-token
If missing after login, check:
Workaround:
Use the tokenized URL every time:
openclaw dashboard
This command outputs a URL with ?token=... appended. The UI strips it after first load and saves to localStorage — but if that fails, you need the URL each time.

If none of the above fixes work, you're in edge case territory. Before opening a GitHub issue, collect these logs:
# Last 100 lines with timestamps
openclaw logs --limit 100 > gateway-logs.txt
# Docker
docker logs openclaw-gateway --tail 100 > gateway-logs.txt
browser-console.txt# Export config (redact tokens)
cat ~/.openclaw/config.json | sed 's/"token": ".*"/"token": "REDACTED"/g' > config-sanitized.json
# Check firewall rules (Linux)
sudo iptables -L -n | grep 18789
# Check what's binding to the port
sudo lsof -i :18789
# Test from external host if relevant
curl -v http://your-server-ip:18789/

Nach dem Debugging in verschiedenen Umgebungen habe ich folgende Fehlerverteilung festgestellt:
60% - Fehlende Reverse-Proxy-WebSocket-Konfiguration
Upgrade/Connection-Headerproxy_http_version 1.120% - Docker NAT behandelt localhost als extern
trustedProxies10% - Portkonflikte von alten Clawdbot/Moltbot
5% - Tailscale bindet statt Loopback
100.x.x.x, wenn Tailscale aktiv istbind: "loopback" in der Konfiguration5% - Auth-Token stimmt nicht überein
openclaw dashboard, um den korrekten tokenisierten Link zu erhaltenDer häufigste Fehler — die fehlende Reverse-Proxy-WebSocket-Konfiguration — ist auch der am leichtesten zu übersehende, da der HTTP-Teil einwandfrei funktioniert. Man sieht das HTML, CSS lädt, aber WebSocket fällt stillschweigend aus.
Wenn Sie hinter einem Proxy arbeiten und das Dashboard sich nicht verbindet, ist das Ihr erster Prüfpunkt.
Bei Macaron hosten wir die Benutzeroberfläche für dich — keine nginx-Konfigurationen zum Debuggen, keine WebSocket-Timeouts zum Anpassen, keine Docker-NAT-Überraschungen. Wenn du es leid bist, die Infrastruktur zu beheben, bevor du Workflows testen kannst, bevorzugst du eine gehostete Benutzeroberfläche für Workflows? Erstelle ein Macaron-Konto.
FAQ
F: Das Dashboard-HTML lädt, aber nichts funktioniert. Wo fange ich an? Öffne DevTools → Netzwerk → WS-Tab. Wenn der WebSocket-Handshake fehlschlägt, fehlen dir fast sicher Upgrade- und Connection-Header in deiner Reverse-Proxy-Konfiguration. Das sind 60 % der Fälle. Wenn du zuerst eine fehlerhafte Installation ausschließen möchtest, würde ich mit dem OpenClaw-Installationsleitfaden abgleichen, bevor du tiefer in Proxy-Konfigurationen eintauchst.
F: Warum zeigt mein Gateway "Pairing erforderlich" an, obwohl ich das Token korrekt gesetzt habe? Überprüfe deine Logs auf remote=172.18.0.1. Wenn du Docker Desktop (Windows oder Mac) verwendest, lässt das NAT das Gateway denken, dass du eine externe Verbindung bist. Führe das Gateway nativ aus oder füge trustedProxies zu deiner Konfiguration hinzu — der Docker-Setup-Leitfaden enthält die genaue Netzwerkkonfiguration für dieses Szenario.
F: Gateway fordert bei jedem Neuladen der Seite mein Token an. Der localStorage Ihres Browsers wird nicht beibehalten. Normalerweise tritt dies im Inkognito-Modus auf, durch eine aggressive Datenschutzerweiterung oder wenn "Speicher beim Beenden leeren" aktiviert ist. Verwenden Sie die tokenisierte URL aus dem openclaw dashboard als Workaround. Wenn die Authentifizierungsprobleme darüber hinausgehen, behandelt die OpenClaw Sicherheitscheckliste das Token-Management ausführlicher.
F: Port 18789 ist bereits in Gebrauch. Was blockiert ihn? Neun von zehn Mal ist es ein alter Moltbot- oder Clawdbot-Gateway, der noch läuft. lsof -i :18789 zeigt Ihnen, was es ist. Beenden Sie es oder ändern Sie einfach den Port von OpenClaw in der Konfiguration. Wenn Sie kürzlich von Moltbot migriert sind, lohnt sich ein Blick auf diesen Artikel über das gleichzeitige Ausführen beider – Dienstkonflikte sind dort ein häufiger Stolperstein.
F: Mein HTTPS-Dashboard kann keine Verbindung zum WebSocket herstellen. Gemischter Inhalt – der Browser erlaubt ws:// auf einer HTTPS-Seite nicht. Ihr Proxy muss die wss://-Beendigung verwalten. Wenn Sie auf einem VPS sind und dieses Problem weiterhin besteht, enthält der VPS-Bereitstellungsleitfaden eine funktionierende nginx + SSL-Konfiguration, die Sie direkt übernehmen können.
F: Tailscale ist aktiv und jetzt lädt das Dashboard lokal nicht mehr. Bekanntes Problem (#1380) — Tailscale kann das Gateway auf 100.x.x.x statt 127.0.0.1 ziehen. Fügen Sie "bind": "loopback" zu Ihrer Konfiguration hinzu und starten Sie neu. Wenn das Bind-Verhalten danach immer noch verwirrend ist, erklärt der Gateway-Referenz alle Optionen klar.