DockerProblem
if you try to run the daemon manually:
sudo /usr/bin/docker daemon
And the error is:
"FATA[0000] Error starting daemon: Error initializing network
controller: could not delete the default bridge network: network bridge
has active endpoints "
The solution is:
sudo rm -r /var/lib/docker/network
Start again docker daemon:
sudo service docker start
It worked for me. There was a problem with the bridge docker started.
sudo docker rmi (image)
sudo docker rm (container)
sudo docker save -o **.tar images
sudo docker load -i **.tar
sudo docker run -it --name test_django -v /home/jiss/:/data --rm 127.0.0.1:5000/django bash
sudo docker run --hostname localhost -p 5674:5672 -p 15674:15672 --name test_rabbit90 tutum/rabbitmq
分类: LINUX
ERROR: epmd error for host "****": timeout (timed out establishing tcp connection)
后来google发现,
https://gist.github.com/2522701
主机名和ip不匹配了,需要更改/etc/hosts
127.0.0.1 yournewhostname
DockerProblem的更多相关文章
随机推荐
- JVM内存管理------GC算法精解(五分钟让你彻底明白标记/清除算法)
相信不少猿友看到标题就认为LZ是标题党了,不过既然您已经被LZ忽悠进来了,那就好好的享受一顿算法大餐吧.不过LZ丑话说前面哦,这篇文章应该能让各位彻底理解标记/清除算法,不过倘若各位猿友不能在五分钟内 ...
- java util包概述
util是utiliy的缩写,意为多用途的,工具性质的包这个包中主要存放了:集合类(如ArrayList,HashMap等),随机数产生类,属性文件读取类,定时器类等类.这些类极大方便了Java编程, ...
- background-size对background-position的影响
CSS3中提出了background-size属性,该属性可以设置背景图片的大小,该属性的值设置为绝对数值或者百分比时对background-position没有任何影响,当设置为contain/co ...
- 5-touch 命令总结
- nginx location语法使用说明
语法规则: location [=|~|~*|^~] /uri/ { … } = 开头表示精确匹配 ^~ 开头表示uri以某个常规字符串开头,理解为匹配 url路径即可.nginx不对url做编码,因 ...
- LVS ip-tun服务器脚本
ifconfig tunl0 192.168.10.10 netmask 255.255.255.255 up route add -host 192.168.10.10 dev tunl0 ipvs ...
- Hibernated的sql查询
记录一下学习Hibernate的心得 1.为什么HIbernate会支持原生态的sql查询? HQL查询语句虽然方便我们查询,但是基于HQL的查询会将查询出来的对象保存到hibernate的缓存当中, ...
- 最小topK问题
- 区间DP lightoj 1422
t个样例 n n个数字 从 1->n 穿衣服 脱了就不能再用 ,可以套 问最少几件衣服 #include<stdio.h> #include<string.h> # ...
- poj3177 && poj3352 边双连通分量缩点
Redundant Paths Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 12676 Accepted: 5368 ...