Docker CE가 Debian 9에 서비스로 등록되지 않았습니다.

Docker CE가 Debian 9에 서비스로 등록되지 않았습니다.

리소스에 따라 Docker Community Edition을 설치했습니다.https://linuxize.com/post/how-to-install-and-use-docker-on-debian-9/

그러나 5단계(systemctl status docker)에 도달하면 서비스 상태 대신 다음과 같은 오류 메시지가 표시됩니다.

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.

모든 명령은 루트로 실행됩니다. 이 문제를 어떻게 해결할 수 있나요?

편집하다:

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

답변1

먼저 파일이 /lib/systemd/system/docker.service실제로 존재하는지 확인하십시오. 그렇지 않은 경우 이전 설치 단계가 실패한 것입니다. 또는 튜토리얼이 작성된 이후 서비스 이름이 변경되었습니다.

그런 다음 실행 systemctl daemon-reload하여 systemd가 새 장치 파일을 다시 로드하도록 합니다. systemctl status docker이후에 제대로 작동 하면 잘못된 패키징에 대한 버그 보고서를 제출할 수 있습니다 .deb. 패키지는 설치 시 자동으로 이 작업을 수행해야 합니다.

댓글에서 다음과 같은 오류 메시지를 발견했습니다.

Failed to get properties: No such interface ''

systemctl이는 명령과 데몬 간의 통신에 문제가 있음을 나타냅니다 systemd.

systemctl status일반적으로 유용합니까?

데비안 9 기본 시스템이 아닌 다른 초기화 시스템을 사용하고 있습니까 systemd? 설치한 Docker 패키지가 systemd사용되는 것으로 가정합니다. 패키지가 설치되어 있습니까 systemd-sysv?

답변2

대체 솔루션.

데비안에 도커를 설치할 때 를 사용했습니다 apt. 먼저 소스에 저장소를 추가해야 했습니다. 그런데 방금 apt-get 업데이트와 apt-get 설치를 수행했습니다. 이것은 훨씬 쉽습니다.

관련 정보