camofox-browser and run gateway in tmux when systemctl --user is unavailableAn OpenClaw agent stayed down for a long time on a root VPS.
Observed symptoms in the same incident:
openclaw plugins list showed non-bundled plugin camofox-browser loaded.openclaw update finished package update, but restart step failed with:
Gateway service check failed: ... systemctl --user unavailable: Failed to connect to bus: No medium foundThere are usually two separate issues combined:
camofox-browser is a global plugin and runs extra browser automation code.openclaw update tries a service restart step.systemctl --user bus is not available.camofox-browser is loadedopenclaw plugins list
If you see camofox-browser loaded and you do not strictly need it, remove it.
camofox-browseropenclaw plugins uninstall camofox-browser --force
rm -rf ~/.openclaw/extensions/camofox-browser
Do not use -yes (unsupported in this command).
openclaw update
systemctl --user unavailable, switch to tmux modeopenclaw gateway stop 2>/dev/null || true
systemctl --user disable --now openclaw-gateway.service 2>/dev/null || true
tmux kill-session -t openclaw 2>/dev/null || true
tmux new -d -s openclaw 'openclaw gateway run --port 18789'
openclaw gateway status
openclaw channels status --probe
openclaw plugins list
Expected:
camofox-browser no longer loaded1) Read latest gateway log:
LOG=$(ls -t /tmp/openclaw/openclaw-*.log | head -1)
tail -n 200 "$LOG"
2) Check tmux session exists:
tmux ls
3) Re-check plugin inventory for unexpected non-bundled plugins:
openclaw plugins list
openclaw update, not openclaw update -yes)plugins.allow explicit for production servers (load only what you need).1006 on root VPS (systemctl --user unavailable)openclaw update reports ERROR after version changes, then gateway restart fails with systemctl --user unavailable