#help

1 messages Β· Page 1 of 1 (latest)

stuck lion
#

gents
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚ Agent β”‚ Bootstrap file β”‚ Sessions β”‚ Active β”‚ Store β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ main β”‚ ABSENT β”‚ 2 β”‚ 18m ago β”‚ ~.openclaw\agents\main\sessions\sessions.json

vague nestBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> βœ… Mark Solution

stuck lion
#

─────────────────┼────────────────────────────────────────────────────────────────────────────────────────────────────
β”‚ 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

sharp edgeBOT
#

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:

  1. openclaw --version
  2. The command you ran that printed this table (gents?)
  3. 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.)