Conexão redefinida por peer no systemctl como root

Conexão redefinida por peer no systemctl como root

Configurei o WSL 2 (Ubuntu) e instalei o systemd (e o systemd-sysv) lá. Depois disso, corri:

sudo mkdir -p /run/dbus
sudo dbus-daemon --system
sudo daemonize /usr/bin/unshare --fork --pid --mount-proc /lib/systemd/systemd --system-unit=basic.target

Antes de instalar systemd, atualizei o Ubuntu para 18.10 (usando sudo do-release-upgradevárias vezes)

Funcionou por um tempo, mas agora só funciona como um usuário normal. Como root, eu tenho

Failed to list units: Connection reset by peer

em qualquer systemctlcomando.

Por causa disso, posso, por exemplo, verificar o status dos serviços, mas não posso ativar/desativar a inicialização do serviço ou iniciá-los/interrompê-los.

Eu também poderia replicá-lo em uma instalação limpa:

Instalei o Debian (WSL2) da Microsoft Store

Executei os seguintes comandos: sudo apt-get update -y sudo apt-get install -y dbus-x11 sudo apt-get install daemonize

Então, executei wsl --shutdownno host e executei:

sudo mkdir -p /run/dbus
sudo dbus-daemon --system
sudo daemonize /usr/bin/unshare --fork --pid --mount-proc /lib/systemd/systemd --system-unit=basic.target

Depois disso, tive os mesmos resultados:

systemctl

SUB DESCRIÇÃO ATIVA DE CARGA DA UNIDADE

proc-sys-fs-binfmt_misc.automount carregado ativo executando arquivo executável arbitrário

sys-devices-LNXSYSTM:00-LNXSYBUS:00-ACPI0004:00-VMBUS:00-fc785225\x2d9131\x2d5661\x2dac0c\x2d3a157c61ae15-net-eth0.device carregado ativo conectado /sys/devices/LNXSYSTM:00/

sys-devices-LNXSYSTM:00-LNXSYBUS:00-ACPI0004:00-VMBUS:00-fd1d2cbd\x2dce7c\x2d535c\x2d966b\x2deb5f811c95f0-host0-target0:0:0-0:0:0:0-block-sda. dispositivo carregado ativo Virtual_Disk sys-devices-LNXSYSTM:00-LNXSYBUS:00-ACPI0004:00-VMBUS:00-fd1d2cbd\x2dce7c\x2d535c\x2d966b\x2deb5f811c95f0-host0-target0:0:0-0:0:0:1 -block-sdb.device carregado Virtual_Disk conectado ativo

e assim por diante, mas quando eu corri

sudo systemctl

Eu obtive

Falha ao listar unidades: conexão redefinida por ponto

Outro exemplo:

$ systemctl status dbus
● dbus.service - D-Bus System Message Bus
   Loaded: loaded (/lib/systemd/system/dbus.service; static; vendor preset: enabled)
   Active: active (running) since Fri 2019-12-13 17:56:36 CET; 13min ago
     Docs: man:dbus-daemon(1)
 Main PID: 110
    Tasks: 1 (limit: 4915)
   Memory: 1.2M
   CGroup: /system.slice/dbus.service
           └─110 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only

Dec 13 17:56:36 Daniellaptop systemd[1]: Started D-Bus System Message Bus.
$ sudo systemctl status dbus
Failed to get properties: Connection reset by peer

[Especificações]

Saída verdo meu host:Microsoft Windows [Version 10.0.19013.1122]

Depois disso também instalei neofetchno sistema Debian (para mostrar para vocês):

       _,met$$$$$gg.          dan@Daniellaptop
    ,g$$$$$$$$$$$$$$$P.       ----------------
  ,g$$P"     """Y$$.".        OS: Debian GNU/Linux 10 (buster) on Windows 10 x86_64
 ,$$P'              `$$$.     Kernel: 4.19.79-microsoft-standard
',$$P       ,ggs.     `$$b:   Uptime: 9 mins
`d$$'     ,$P"'   .    $$$    Packages: 226 (dpkg)
 $$P      d$'     ,    $$P    Shell: bash 5.0.3
 $$:      $$.   -    ,d$$'    Terminal: /dev/pts/0
 $$;      Y$b._   _,d$P'      CPU: Intel i7-7500U (4) @ 2.903GHz
 Y$$.    `.`"Y$$$$P"'         Memory: 80MiB / 6868MiB
 `$$b      "-.__
  `Y$$
   `Y$$.
     `$$b.
       `Y$$b.
          `"Y$b._
              `"""

Saída de uname -a:

Linux <hostname of the host> 4.19.79-microsoft-standard #1 SMP Mon Oct 14 00:50:46 UTC 2019 x86_64 GNU/Linux

[Observação]

É o mesmo resultado se eu iniciar o sistema e executar

sudo daemonize /usr/bin/unshare --fork --pid --mount-proc /lib/systemd/systemd --system-unit=basic.target

sem

sudo mkdir -p /run/dbus
sudo dbus-daemon --system

Responder1

Isto é possível instalando systemdde outra forma, conforme descritoaqui. Primeiramente, você precisa instalar git, clonar este repositório e executar o instalador conforme descrito no arquivo README.md.

sudo apt update
sudo apt install -y git
git clone https://github.com/DamionGans/ubuntu-wsl2-systemd-script.git
cd ubuntu-wsl2-systemd-script/
bash ubuntu-wsl2-systemd-script.sh

Depois disso, você executa wsl --shutdowno cmd e inicia o WSL novamente.

informação relacionada