码头工人目前正在给我一个艰难的时刻。为了在运行由strato.de托管的Ubuntu 14.04的虚拟服务器上安装docker,我按照这些https://jsfiddle.net/9tnwz8j2/进行了操作。
wget -qO- https://get.docker.com/ | sh
执行此行会直接运行此错误消息:
modprobe: ERROR: ../libkmod/libkmod.c:507 kmod_lookup_alias_from_builtin_file() could not open builtin file '/lib/modules/3.13.0-042stab092.3/modules.builtin.bin'modprobe: FATAL: Module aufs not found.
Warning: current kernel is not supported by the linux-image-extra-virtual
package. We have no AUFS support. Consider installing the packages linux-image-virtual kernel and linux-image-extra-virtual for AUFS support.
安装完成后,我安装了两个提到的软件包。现在我的问题是我无法让docker运行。
service docker start
结果:
start: Job failed to start
docker -d
结果
INFO[0000] +job serveapi(unix:///var/run/docker.sock)
INFO[0000] Listening for HTTP on unix (/var/run/docker.sock)
ERRO[0000] 'overlay' not found as a supported filesystem on this host. Please ensure kernel is new enough and has overlay support loaded.
INFO[0000] +job init_networkdriver()
WARN[0000] Running modprobe bridge nf_nat failed with message: , error: exit status 1
package not installed
INFO[0000] -job init_networkdriver() = ERR (1)
FATA[0000] Shutting down daemon due to errors: package not installed
和
docker run hello-world
结果
FATA[0000] Post http:///var/run/docker.sock/v1.18/containers/create: dial unix /var/run/docker.sock: no such file or directory. Are you trying to connect to a TLS-enabled daemon without TLS?
有没有人知道哪些依赖项可能会丢失?还有什么可能出错?是否有任何码头提供的日志?
我来回寻找解决方案,但找不到一个。
提到这是一个全新的Ubuntu 14.04设置。除了java之外,我没有安装任何其他服务。我需要docker的原因是使用sharelatex的dockerimage。
我很感谢你的帮助!
答案 0 :(得分:14)
这是我尝试/发现的内容,希望它能为您节省一些时间甚至帮助您解决问题。
Docker的download script正在尝试通过uname -r
识别内核,以便为您的主机安装正确的内核附件。
我怀疑有两个问题:
3.13.0-042stab108.2
)。由于脚本在名称中明确查找-generic
,因此查找失败。generic
内核附加功能。似乎使用升级内核也不起作用,因为它会影响同一物理机器上的所有用户/ vHost。这是因为内核是共享的(在某些支持服务单中说明)。绕过那个..
我看到两个选项:获取一个专用主机,这样你就可以搞乱内核和文件系统,或者至少让docker安装程序执行它或install the binaries manually。
答案 1 :(得分:10)
你需要启动docker
sudo start docker
然后
sudo docker run hello-world
我在ubuntu 14.04遇到了同样的问题,解决了。
参考Nino-K的评论https://github.com/docker-library/hello-world/issues/3