随笔分类 -  docker 错误收集

实验过程中遇到的错误及解决办法
摘要:https://www.cnblogs.com/sparkdev/p/9614326.html 阅读全文
posted @ 2018-09-16 07:38 无踪无影 阅读(225) 评论(0) 推荐(0)
摘要:配置docker网络flannel时,配置etcd的key的时候出现以下错误 Error: client: etcd cluster is unavailable or misconfigured; error #0: dial tcp 127.0.0.1:4001: getsockopt: con 阅读全文
posted @ 2018-08-16 11:13 无踪无影 阅读(27352) 评论(2) 推荐(0)
摘要:环境:cetos7 描述:创建完docker swarm,想把node主机加入swarm中,执行以下命令时,报错 无法连接! 原因是:防火墙!!!!!!!没关!!!! 解决办法是:关闭防火墙 阅读全文
posted @ 2017-12-18 16:01 无踪无影 阅读(11185) 评论(0) 推荐(0)
摘要:环境:centos7 执行一下命令时, docker service create --mode global --name logspout gliderlabs/logspout 出现以下报错: Error response from daemon: rpc error: code = Unkn 阅读全文
posted @ 2017-12-17 10:51 无踪无影 阅读(21805) 评论(0) 推荐(0)
摘要:将docker worker node加入swarm集群时,出现以下错误 1.试验环境: centos7 2.报错翻译:--cluster-store和--cluster-advertise后台配置与集群不一致 3.分析:--cluster-advertise是用来指定集群与其他node的通信地址的 阅读全文
posted @ 2017-12-13 13:47 无踪无影 阅读(3019) 评论(0) 推荐(0)
摘要:Get https://192.168.2.119/v2/: dial tcp 192.168.2.119:443: getsockopt: connection refused 阅读全文
posted @ 2017-12-10 01:54 无踪无影 阅读(7612) 评论(0) 推荐(0)
摘要:原因是:由于内核不支持限制内存的设置 解决办法是:vim /etc/default/grub 修改为: 或者:GRUB_CMDLINE_LINUX="cgroup_enable=memory swapaccount=1" 重启后可以解决 阅读全文
posted @ 2017-12-10 01:53 无踪无影 阅读(5505) 评论(0) 推荐(0)
摘要:http: server gave HTTP response to HTTPS client 出现这问题的原因是:Docker自从1.3.X之后docker registry交互默认使用的是HTTPS,但是搭建私有镜像默认使用的是HTTP服务,所以与私有镜像交时出现以上错误。 这个报错是在本地上传 阅读全文
posted @ 2017-12-06 01:24 无踪无影 阅读(33466) 评论(0) 推荐(0)