Ubuntu 14.04.3 上的 Docker 总是出现“[8] 系统错误:没有这样的文件或目录”

Ubuntu 14.04.3 上的 Docker 总是出现“[8] 系统错误:没有这样的文件或目录”

我三周前就开始使用 Docker 了,但现在除了

no such file or directory
Error response from daemon: Cannot start container 7d3cb483971037da163fd8d220100728f51e055e7d0ae811a70bf2ef32564552: [8] System error: no such file or directory

我要去疯狂尝试让它工作。

Docker 版本:

Client:
 Version:      1.8.2
 API version:  1.20
 Go version:   go1.4.2
 Git commit:   0a8c2e3
 Built:        Wed Oct  7 17:48:28 UTC 2015
 OS/Arch:      linux/amd64

Server:
 Version:      1.8.2
 API version:  1.20
 Go version:   go1.4.2
 Git commit:   0a8c2e3
 Built:        Wed Oct  7 17:48:28 UTC 2015
 OS/Arch:      linux/amd64

码头工人信息:

Containers: 1
Images: 2
Storage Driver: aufs
 Root Dir: /var/lib/docker/aufs
 Backing Filesystem: extfs
 Dirs: 4
 Dirperm1 Supported: false
Execution Driver: native-0.2
Logging Driver: json-file
Kernel Version: 3.13.0-66-generic
Operating System: Ubuntu 14.04.3 LTS
CPUs: 4
Total Memory: 7.74 GiB
Name: footscray
ID: IWMM:MCLX:3H5C:V4QA:JQA2:TVBM:F3PX:4VC4:45XZ:C6AT:TB75:QQNG

输出uname -a

Linux footscray 3.13.0-66-generic #108-Ubuntu SMP Wed Oct 7 15:20:27 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

我正在奔跑localhost

输出docker run hello-world

Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world

535020c3e8ad: Pull complete 
af340544ed62: Pull complete 
Digest: sha256:a68868bfe696c00866942e8f5ca39e3e31b79c1e50feaee4ce5e28df2f051d5c
Status: Downloaded newer image for hello-world:latest
no such file or directory
Error response from daemon: Cannot start container b834de00b11decea01b36d1105352eca423bf708dda4b14016bab8fecd5bff41: [8] System error: no such file or directory

起初我使用wget安装方法docker,但后来我删除了所有内容,并使用了文档

我已经安装app-armour并做了相应的调整。

答案1

我已经解决了这个问题 - 值得注意的是,我的 docker 和 AppArmor 技能还很初级,所以我不是 100% 确定这里发生了什么。

当我第一次应用 AppArmor 解决方案(aa-complain,每个会话)时,它起作用了。然后我禁用了配置文件,以保证重新启动后的一致性(按照Ubuntu 维基百科):

sudo ln -s /etc/apparmor.d/docker /etc/apparmour.d/disable/docker

当我删除 /etc/apparmour.d/disable 中的条目并仅设置 aa-complain 时,docker 就开始再次工作了。

作为参考,我今天上午设置了一个 Ubuntu 15.04 的虚拟机,遇到了完全相同的问题 - 这就是我找到解决方案的方法。

相关内容