Hi,
Good news on the first question — the broken openclaw-sandbox-browser service has already been deleted. It's no longer visible in the Dashboard because it's gone (not because it's hidden).
On the second question: We checked your OpenClaw config and found that the browser configuration was NOT updated. Your config still contains the OLD local Chrome settings:
"browser": {
"executablePath": "/usr/bin/google-chrome-stable",
"headless": true
}
This means OpenClaw is still trying to use a local Chrome, not the remote sandbox browser — that's why the error persists.
We verified that the remote sandbox (openclaw-sandbox-browser-untal) IS reachable from OpenClaw (Chrome 144 responds on CDP port).
To fix this, you need to actually update the browser config. Two ways to do it:
Option A — via OpenClaw Control UI:
- Open OpenClaw Control UI (via
rhclaw.zeabur.app or wherever your OpenClaw is accessed)
- Go to Settings → Browser configuration
- Replace the current config with:
{
"enabled": true,
"attachOnly": true,
"defaultProfile": "remote",
"profiles": {
"remote": {
"cdpUrl": "http://openclaw-sandbox-browser-untal:9222"
}
}
}
- Save and restart OpenClaw
Option B — via OpenClaw CLI (chat with the agent):
You can directly tell the OpenClaw agent in chat:
Please add a remote browser config to my OpenClaw with cdpUrl http://openclaw-sandbox-browser-untal:9222 set as the default profile, attachOnly enabled.
The agent will update the config file (/home/node/.openclaw/openclaw.json) for you and apply the changes automatically.
Important: Make sure the old executablePath and headless fields are removed entirely — only the new browser config block as shown above.
If you can't save it via either method, let us know — we can guide you to edit /home/node/.openclaw/openclaw.json directly in the terminal.