No se puede habilitar el servicio de usuario. Soporte "No se pudo obtener la conexión D-Bus: conexión rechazada"


11

Recibo este error cuando ejecuto cualquier comando systemd como usuario:

admin@Xroklaus:~ $ systemctl --user list-units
Failed to get D-Bus connection: Connection refused

Sin el parámetro de usuario, el comando funciona bien.

admin@Xroklaus:~ $ systemctl list-units
  UNIT                                                                 LOAD   ACTIVE SUB       DESCRIPTION
  proc-sys-fs-binfmt_misc.automount                                    loaded active waiting   Arbitrary Executable File Formats File System Automount Point
  sys-devices-platform-soc-3f201000.serial-tty-ttyAMA0-hci0-rfkill1.device loaded active plugged   /sys/devices/platform/soc/3f201000.serial/tty/ttyAMA0/hci0/rfkil
  sys-devices-platform-soc-3f201000.serial-tty-ttyAMA0-hci0.device     loaded active plugged   /sys/devices/platform/soc/3f201000.serial/tty/ttyAMA0/hci0
  ...
  To show all installed unit files use 'systemctl list-unit-files'.
  lines 102-129/129 (END)

Y Dbus está corriendo.

admin@Xroklaus:~ $ ps -ef | grep dbus
message+   443     1  0 Jan06 ?        00:00:00 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
admin     9082  9040  0 11:42 pts/0    00:00:00 grep --color=auto dbus

Parece que Systemd no se está ejecutando para este usuario

admin@Xroklaus:~ $ ps -ef | grep systemd
root       142     1  0 Jan06 ?        00:00:08 /lib/systemd/systemd-journald
root       147     1  0 Jan06 ?        00:00:00 /lib/systemd/systemd-udevd
message+   443     1  0 Jan06 ?        00:00:00 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
root       520     1  0 Jan06 ?        00:00:00 /lib/systemd/systemd-logind
admin    10255  9040  0 16:53 pts/0    00:00:00 grep --color=auto systemd

Sin embargo, no sé cómo hacerlo funcionar.

Esto tampoco parece normal:

admin@Xroklaus:~ $ systemd --test
Trying to run as user instance, but $XDG_RUNTIME_DIR is not set.

1
¿Tiene una instancia de dbus ejecutándose para su propio usuario? Y lo más importante, ¿tiene una instancia de systemd ejecutándose para su usuario?
Bigon

Lamentablemente, esto está deshabilitado para RHEL / CentOS 7 bugs.centos.org/view.php?id=8767
nodakai

Respuestas:


8

Parece que un paquete se perdió:

admin@Xroklaus:~ $ sudo apt-get install libpam-systemd

Y después de un reinicio, vuelve a funcionar.


Reinicio requerido para mí (Raspbian). Gracias por este consejo
Matt
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.