Docker CE não está registrado como um serviço no Debian 9

0

Instalei o Docker Community Edition de acordo com o recurso: link

No entanto, quando chego na etapa 5 (systemctl status docker), recebo a seguinte mensagem de erro em vez do status do serviço:

root@srv-012:/etc/systemd# systemctl start docker
Failed to start docker.service: Unknown unit: docker.service
See system logs and 'systemctl status docker.service' for details.

Todos os comandos são executados como root. Como posso consertar isso?

EDITAR:

The file '/lib/systemd/system/docker.service' is created correctly, here is the contents:

[Unit]
Description=Docker Application Container Engine
Documentation=https://docs.docker.com
BindsTo=containerd.service
After=network-online.target firewalld.service
Wants=network-online.target

[Service]
Type=notify
# the default is not to use systemd for cgroups because the delegate issues still
# exists and systemd currently does not support the cgroup feature set     required
# for containers run by docker
ExecStart=/usr/bin/dockerd -H unix://
ExecReload=/bin/kill -s HUP $MAINPID
TimeoutSec=0
RestartSec=2
Restart=always

# Note that StartLimit* options were moved from "Service" to "Unit" in     systemd 229.
# Both the old, and new location are accepted by systemd 229 and up, so using the old location
# to make them work for either version of systemd.
StartLimitBurst=3

# Note that StartLimitInterval was renamed to StartLimitIntervalSec in systemd 230.
# Both the old, and new name are accepted by systemd 230 and up, so using the old name to make
# this option work for either version of systemd.
StartLimitInterval=60s

# Having non-zero Limit*s causes performance problems due to accounting overhead
# in the kernel. We recommend using cgroups to do container-local accounting.
LimitNOFILE=infinity
LimitNPROC=infinity
LimitCORE=infinity

# Comment TasksMax if your systemd version does not supports it.
# Only systemd 226 and above support this option.
TasksMax=infinity

# set delegate yes so that systemd does not reset the cgroups of docker containers
Delegate=yes

# kill only the docker process, not all processes in the cgroup
KillMode=process

[Install]
WantedBy=multi-user.target
    
por Daniel Becker 14.11.2018 / 09:55

2 respostas

0

Primeiro, verifique se o arquivo /lib/systemd/system/docker.service realmente existe; se isso não acontecer, uma etapa de instalação anterior falhou - ou o nome do serviço mudou desde que o tutorial foi escrito.

Em seguida, execute systemctl daemon-reload para fazer o systemd recarregar qualquer novo arquivo de unidade. Se systemctl status docker funcionar depois disso, você pode enviar um relatório de bug sobre o% bad.deb packaging - o pacote deve ter feito isso automaticamente na instalação.

Nos comentários, a mensagem de erro foi:

Failed to get properties: No such interface ''

Isso sugere algum tipo de problema na comunicação entre o comando systemctl e o daemon systemd .

O systemctl status geralmente funciona?

Você está usando algum outro sistema init em vez do padrão do Debian 9 systemd ? O pacote do Docker que você instalou pressupõe que systemd seja usado. O pacote systemd-sysv está instalado?

    
por 14.11.2018 / 10:19
0

Solução alternativa.

Quando eu instalei o docker no debian, eu uso apt . Primeiro tive que adicionar o repositório às fontes. Mas depois disso eu fiz uma atualização do apt-get e uma instalação do apt-get. Isso é muito mais fácil.

    
por 14.11.2018 / 11:54

Tags