在运行x64 Linux 18.3肉桂的笔记本上,我试图安装Docker:
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 \
--recv-keys 58118E89F3A912897C070ADBF76221572C52609D
sudo apt-add-repository 'deb https://apt.dockerproject.org/repo
ubuntu-xenial main'
sudo apt update
sudo apt install linux-image-generic linux-image-extra-virtual
sudo apt install docker-engine只有在最后一步中,流程才会失败。我猜想它实际上是在安装软件,但我的系统无法执行Docker服务:
Job for docker.service failed because the control process exited with
error code. See "systemctl status docker.service" and "journalctl -xe"
for details.
invoke-rc.d: initscript docker, action "start" failed.
● docker.service - Docker Application Container Engine
Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor
preset: enabled)
Active: activating (auto-restart) (Result: exit-code) since Di 2018-
02-
27 10:45:35 CET; 17ms ago
Docs: https://docs.docker.com
Process: 9906 ExecStart=/usr/bin/dockerd -H fd:// (code=exited,
status=1/FAILURE)
Main PID: 9906 (code=exited, status=1/FAILURE)
Feb 27 10:45:35 silberpfeil systemd[1]: Failed to start Docker
Application Container Engine.
Feb 27 10:45:35 silberpfeil systemd[1]: docker.service: Unit entered
failed state.
Feb 27 10:45:35 silberpfeil systemd[1]: docker.service: Failed with
result 'exit-code'."Silberpfeil“是我系统的名字。在这个错误协议中,有一个提示说我应该在
第一个返回:
● docker.service - Docker Application Container Engine
Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor
preset: enabled)
Active: inactive (dead) (Result: exit-code) since Di 2018-02-27
10:45:38 CET; 9min ago
Docs: https://docs.docker.com
Process: 10011 ExecStart=/usr/bin/dockerd -H fd:// (code=exited,
status=1/FAILURE)
Main PID: 10011 (code=exited, status=1/FAILURE)
Feb 27 10:45:38 silberpfeil systemd[1]: Failed to start Docker
Application Container Engine.
Feb 27 10:45:38 silberpfeil systemd[1]: docker.service: Unit entered
failed state.
Feb 27 10:45:38 silberpfeil systemd[1]: docker.service: Failed with
result 'exit-code'.
Feb 27 10:45:38 silberpfeil systemd[1]: docker.service: Service hold-
off time over, scheduling restart.
Feb 27 10:45:38 silberpfeil systemd[1]: Stopped Docker Application
Container Engine.
Feb 27 10:45:38 silberpfeil systemd[1]: docker.service: Start request
repeated too quickly.
Feb 27 10:45:38 silberpfeil systemd[1]: Failed to start Docker
Application Container Engine.第二个说的东西太多了,不能在这里张贴。只要你不需要它来帮忙。俯瞰着它,我可以通过grep看到一些说Docker的东西:
Feb 27 10:45:37 silberpfeil dockerd[10011]: time="2018-02-
27T10:45:37.123564185+01:00" level=info msg="libcontainerd: new
containerd process, pid: 10033"
Feb 27 10:45:38 silberpfeil dockerd[10011]: time="2018-02-
27T10:45:38.129863280+01:00" level=warning msg="failed to rename
/var/lib/docker/tmp for background deletion: %!s(<nil>). Deleting
synchronously"
Feb 27 10:45:38 silberpfeil dockerd[10011]: time="2018-02-
27T10:45:38.140660647+01:00" level=error msg="[graphdriver] prior
storage driver aufs failed: driver not supported"
Feb 27 10:45:38 silberpfeil dockerd[10011]: Error starting daemon:
error initializing graphdriver: driver not supported
Feb 27 10:45:38 silberpfeil systemd[1]: docker.service: Main process
exited, code=exited, status=1/FAILURE
-- Subject: Unit docker.service has failed
-- Unit docker.service has failed.
Feb 27 10:45:38 silberpfeil systemd[1]: docker.service: Unit entered
failed state.
Feb 27 10:45:38 silberpfeil systemd[1]: docker.service: Failed with
result 'exit-code'.
Feb 27 10:45:38 silberpfeil systemd[1]: docker.service: Service hold-
off time over, scheduling restart.
-- Subject: Unit docker.service has finished shutting down
-- Unit docker.service has finished shutting down.
-- Subject: Unit docker.socket has finished shutting down
-- Unit docker.socket has finished shutting down.
-- Subject: Unit docker.socket has begun shutting down
-- Unit docker.socket has begun shutting down.
-- Subject: Unit docker.socket has begun start-up
-- Unit docker.socket has begun starting up.
-- Subject: Unit docker.socket has finished start-up
-- Unit docker.socket has finished starting up.
Feb 27 10:45:38 silberpfeil systemd[1]: docker.service: Start request
repeated too quickly.
-- Subject: Unit docker.service has failed
-- Unit docker.service has failed.
Feb 27 10:45:38 silberpfeil systemd[1]: docker.socket: Unit entered
failed state.有人能找到什么吗?
发布于 2018-02-27 12:56:11
感谢这些评论,我没有再一次忽略关于不支持的驱动程序的部分,并发现,这实际上是关于AUFS驱动程序的,即所谓的图形驱动程序。
在互联网搜索引擎中查找“停靠图形驱动程序不受支持”给了我以下提示:https://askubuntu.com/questions/870889/cant-start-docker-on-ubuntu-16-04-with-driver-not-supported-error#870890。所以,对我来说,
sudo rm -rf /var/lib/docker/aufs有关更多细节,请参见链接答案。
https://unix.stackexchange.com/questions/426911
复制相似问题