当前位置: 代码迷 >> 综合 >> (转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem
  详细解决方案

(转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem

热度:132   发布时间:2023-09-10 22:32:41.0

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

学docker真是艰辛,初阶学了几天,进阶主机管理就用了和前面一样的时间,错误真的太多了。我现在就来记录一下,我今天又遇到的问题。

一开始学的时候daemon没有弄清楚,后来到了主机管理,也提了一下,但我都没有解决得了,要学网络时,发现必须得弄清楚了。教程一般都是两条命令:

systemctl daemon-reload

systemctl restart docker.service

但是ubuntu 14.04没有systemctl命令,我一开始就用service ,upstart,cm2,等试了不行,后来灵机一动,我为什么不安一个呢!

(转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem

然后还没有daemon,我就安装了 daemon。

(转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem

一、service docker restart stop:Unknow job start: Unkonw job

第一条能运行成功了,第二条出错,算了,不管他了,反正有service docker restart

(转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem

加速器:针对Docker客户端版本大于1.10的用户,您可以通过修改daemon配置文件/etc/docker/daemon.json来使用加速器:

然后我想用一个加速器,去阿里云上申请了一个,但我没有daemon配置文件。就在/etc/docker 下创建一个daemon.json

文件,其实有一个隐藏文件,.daemon.json.swp 隐藏文件,当我编辑daemon.json 时,出现如下提示:

(转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem

我就vim -r daemon.json 添加了如下。

(转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem

后来docker 就启动不了了。

service docker restart

stop: Unknow instance、

start:job failed to start

stop:Unknow job:docker

start: Unkonw job:docker

等错误,不要在su 模式下, 要在su - 模式下,就可以。因为权限不够,要给它赋予权限。

(转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem

二、Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

安装完daemon后,在/etc/systemd/system/docker/multi-user.target.wants/docker.service 配置文件中。

https://docs.docker.com/engine/admin/systemd/

(转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem

然后我就不知道改了什么。就出现了

service docker restart

docker stop/waiting

docker start/running, process 10051

service docker status

docker stop/running

然后输什么命令错误都是:

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

然后通过查看/var/log/upstart/docker.log ,感觉肯定是/var/run/docker.sock 有错,

Docker使用socket进行客户端和服务端的连接,unix:///var/run/docker.sock Unix端口,是默认的连接方式

(转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem

就把daemon.json 文件删了。

(转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem

(转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem

因为我之前在/etc/default/docker 配置文件下添加了一行DOCKER_OPTS=--registry-mirror-https://...mirror.aliyuncs.com

日志说找不到,于是我就删了。docker.sock 我没动他,也就没改。然后就好了。

(转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem

(转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem

(转载)Docker学习 -Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daem

今天真是乱乱的一天,写的也很乱,明天我终于要开始学网络了。

  相关解决方案