โ
โ Gateway โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ โ
โ Gateway service install failed: Error: systemctl daemon-reload failed: โ
โ Reload daemon failed: Process org.freedesktop.systemd1 exited with โ
โ status 1 โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
โ
โ Gateway โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ โ
โ Tip: rerun openclaw gateway install after fixing the error. โ
โ โ
#gateway installation failed on xubuntu 26.04
1 messages ยท Page 1 of 1 (latest)
This is failing before OpenClaw can actually start the gateway: openclaw gateway install writes a Linux systemd user unit, then runs systemctl --user daemon-reload. That org.freedesktop.systemd1 exited with status 1 points at the local systemd/user bus being unhealthy or unavailable.
Can you paste these outputs?
openclaw --version
systemctl --user status --no-pager
systemctl --user daemon-reload
journalctl --user -xe --no-pager | tail -80
If this is a fresh Xubuntu session, also try logging out/in or rebooting once, then rerun:
openclaw gateway install
As a temporary workaround, you can run the gateway directly without installing the service:
openclaw gateway run
Docs for the Linux/systemd install path: https://docs.openclaw.ai/platforms/linux and gateway runbook: https://docs.openclaw.ai/gateway
Yep, that confirms it: OpenClaw is not the failing process here. Your per-user systemd manager is failing to start:
Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1
The snapd spam is probably noise. The important part is systemctl --user itself cannot run, so OpenClaw cannot install its user service yet.
Next checks:
echo "$XDG_RUNTIME_DIR"
ls -ld /run/user/$(id -u)
loginctl show-user "$USER" -p State -p Linger -p RuntimePath
systemctl status user@$(id -u).service --no-pager
journalctl -u user@$(id -u).service -b --no-pager | tail -120
Likely fixes to try, in this order:
sudo apt install --reinstall dbus-user-session systemd systemd-sysv
sudo loginctl enable-linger "$USER"
reboot
After reboot, verify systemctl --user status --no-pager works. Then rerun:
openclaw gateway install
If this machine is only being accessed through xrdp/remote desktop, that may be part of it: those sessions sometimes start without a healthy systemd user manager. The foreground workaround should still work while you fix the OS session layer:
openclaw gateway run