gents
ββββββββββββββ¬βββββββββββββββββ¬βββββββββββ¬βββββββββββ¬ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Agent β Bootstrap file β Sessions β Active β Store β
ββββββββββββββΌβββββββββββββββββΌβββββββββββΌβββββββββββΌββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β main β ABSENT β 2 β 18m ago β ~.openclaw\agents\main\sessions\sessions.json
#help
1 messages Β· Page 1 of 1 (latest)
ββββββββββββββββββΌββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β Version β 2026.2.24 β
β OS β windows 10.0.22631 (x64) β
β Node β 24.14.0 β
β Config β ~.openclaw\openclaw.json β
β Dashboard β http://127.0.0.1:18789/ β
β Tailscale β off β
β Channel β stable (default) β
β Update β pnpm Β· npm update 2026.2.25 β
β Gateway β local Β· ws://127.0.0.1:18789 (local loopback) Β· unreachable (connect failed: connect β
β β ECONNREFUSED 127.0.0.1:18789) β
β Security β Run: openclaw security audit --deep β
β Gateway self β unknown β
β Gateway service β Scheduled Task installed Β· registered Β· stopped β
β Node service β Scheduled Task not installed β
β Agents β 1 total Β· 0 bootstrapping Β· 0 active Β· 2 sessions
That output looks totally normal: itβs just saying your main agent has 2 session records stored, last active 18 minutes ago, and the session store file lives at:
~\.openclaw\agents\main\sessions\sessions.json
Also βBootstrap file: ABSENTβ is good/normal (it only shows up if you have a BOOTSTRAP.md in the agent workspace, which can sometimes cause βstuck bootstrappingβ loops).
What problem are you trying to solve with this? (e.g. sessions not resuming, weird history, agent stuck, etc.)
If you paste these, I can tell you the next exact step:
openclaw --version- The command you ran that printed this table (
gents?) - Any error/log lines youβre seeing right before/after the issue
If your goal is specifically βwipe/reset sessionsβ, the safe move is:
- stop the gateway
- rename
sessions.jsonβsessions.json.bak - start the gateway again (it should recreate a fresh sessions store)
Your session store looks fine β the real problem is lower down in that status block:
- Gateway: unreachable (ECONNREFUSED 127.0.0.1:18789)
- Gateway service: β¦ stopped
So nothing is listening on 127.0.0.1:18789 right now β the dashboard + agent runtime canβt connect.
Try this command ladder (from the troubleshooting runbook), in order:
openclaw gateway start
openclaw gateway status
openclaw status
Healthy looks like: Runtime: running and RPC probe: ok in openclaw gateway status.
Docs: https://docs.openclaw.ai/gateway/troubleshooting
If gateway start immediately fails or the service flips back to stopped, paste:
openclaw gateway status --deep
openclaw logs --follow
openclaw doctor
Two common fixes if itβs an install/service metadata mismatch:
openclaw gateway install --force
openclaw gateway restart
(Also worth checking openclaw config get gateway.mode is local β the docs call out Gateway start blocked: set gateway.mode="local" as a common signature.)