#gateway installation failed on xubuntu 26.04

1 messages ยท Page 1 of 1 (latest)

leaden tartan
#

โ”‚
โ—‡ 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. โ”‚
โ”‚ โ”‚

high gardenBOT
#

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

olive craterBOT
# leaden tartan โ”‚ โ—‡ Gateway โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ โ”‚...

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
leaden tartan
olive craterBOT
# leaden tartan

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
olive craterBOT
# leaden tartan

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:

olive craterBOT
leaden tartan