不是办法的办法,关于docker错误

OS X下的docker,会出现下面错误:

FATA[0032] An error occurred trying to connect: Get https://192.168.59.103:2376/v1.16/version: dial tcp 192.168.59.103:2376: i/o timeout

不是办法的办法是:恢复初始状态,这意味着以前下载的images没了,原来的container也没了...

  1.  boot2docker stop
     boot2docker destroy
  1.  boot2docker init
     boot2docker up
     docker version

http://cxwangyi.github.io/notes/2015-01-13-docker-pitfalls.html

Error

docker version command complains

FATA[0032] An error occurred trying to connect: Get https://192.168.59.103:2376/v1.16/version: dial tcp 192.168.59.103:2376: i/o timeout

while docker upgrade shows that the client tne the server are of the same version (which means they should work together).

Diagnosis

The problem is because that I had created a host-only network vboxnet0before in an experiment of building a VM cluster using VirtualBox on my Mac mini, and boot2docker init would also create a boot2docker VM that uses vboxnet0. However, boot2docker VM expects that the local network vboxnet0 has IP prefix 192.168.53.xxx, whereas my vboxnet0 has another IP prefix.

Solution

The solution is simple:

  1. Stop and destory boot2docker VM:

     boot2docker stop
     boot2docker destroy
  2. Delete my vboxnet0 local network from VirtualBox.
  3. Recreate boot2docker VM and start it:
     boot2docker init
     boot2docker up
     docker version

No space left on device

Error

When I run docker build, it complains not enough disk space.

Diagnosis

When above error happends with boot2docker, it means that the boot2docker VM, other than using has not enough disk space.

Solution

Clone the VMDK disk image created by boot2docker init into a VDI image, enlarge it, mount it to VM, and repartition it. More details can be found here.

时间: 2024-11-03 22:07:51

不是办法的办法,关于docker错误的相关文章

PHP编译安装时常见错误解决办法,php编译常见错误

PHP编译安装时常见错误解决办法,php编译常见错误 1.configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution 解决方法: yum -y install libxslt-devel 2.configure: error: Could not find net-snmp-config binary. Please check your net-snmp installa

通过findViewById()方法从layout中获取view并进行相应的转换时提示:"Cannot cast from View to AutoCompleteTextView"的解决办法!(转+自己错误)

转:http://blog.csdn.net/zyz511919766/article/details/7453864 代码: 1 package zyz.example.autocompletetextview; 2 3 import android.app.Activity; 4 import android.os.Bundle; 5 import android.widget.ArrayAdapter; 6 7 public class AutoCompleteTextView exten

Docker 错误 docker: invalid reference format. 的解决

运行 docker run –it –v /dataset:/dataset –v /inference:/inference –v /result:/result floydhub/pytorch:0.4.0-py2.29 /inference/inference.sh 报错 docker: invalid reference format. See 'docker run --help'. 发现原来是...原来是...网站上复制下来的–应该是-才对. 所以这件事告诉我们,作为发布者,务必用<

Oracle开发包被锁解决办法-终极办法

http://www.itpub.net/forum.php?mod=viewthread&tid=1761963 以前在数据库维护中,基本都是碰到表被锁的情况,然后就是查找被锁的表相关的信息,通过v$session视图查找到相关的sid和serial#,通过 alter system kill session ‘sid,serial#’ kill掉相关的进程即可.但是今天碰到开发包更新过程中,连接中断,导致开发包一直被锁定的状态,无法操作. 由于以前没有遇到包被锁的情况,所以也没太注意这方面的

PHP安装编译错误及解决办法

今天搭建LAMP环境是编译PHP时出现的错误汇总. 错误: configure: error: xml2-config not found. Please check your libxml2 installation. 解决办法: yum install -y libxml2-devel 错误: configure: error: Cannot find OpenSSL's <evp.h> 解决办法: yum install -y openssl openssl-devel 错误: chec

sysctl -P 报&quot;unknown key&quot;错误解决办法

[[email protected] Packages]# sysctl -p net.ipv4.ip_forward = 0 net.ipv4.conf.default.rp_filter = 1 net.ipv4.conf.default.accept_source_route = 0 kernel.sysrq = 0 kernel.core_uses_pid = 1 net.ipv4.tcp_syncookies = 1 error: "net.bridge.bridge-nf-call-

UnsupportedClassVersionError 错误解决办法

偶然遇到关于版本问题的错误,为了以后查找方便记录下来.有更好的办法欢迎大家更正. 错误内容: Exception in thread "main" java.lang.UnsupportedClassVersionError: com/jacob/activeX/ActiveXComponent : Unsupported major.minor version 51.0 错误翻译: 在执行main方法时 ,其中用到ActiveXComponent 包时候编译用的版本与当前ide中使用

ajax---&gt;请求异常 jQuery提示parsererror错误解决办法

ajax请求异常 jQuery提示parsererror错误解决办法 原因:出现这个错误是因为后端返回的数据类型和前端请求中dataType的要求类型不一致导致的. dataType简介:jquery中ajax的dataType属性用于指定服务器返回的数据类型,如果不指定,jQuery 将自动根据HTTP包MIME信息来智能判断,如果datatype选项不填写的话,会将返回的数据当成字符串处理. ajax的datatype选项的值 1."xml":返回 XML 文档,可用 jQuery

uploadify上传图片的类型错误的解决办法

大家在做开发的过程中,相信很多人都会使用到uploadify插件来上传图片,但是这个插件也有不完美的地方. 我曾多次遇到过这样一个问题:上传的图片类型明明是没有问题的,但是在上传的时候总是会报错:图片类型不允许. 这个问题让我郁闷了很久,后来在网上找到了答案,为了记住这个问题,把解决办法分享给大家. 由于uploadify插件结合了ajax+flash,而flash上传图片的mine是application/octet-stream,问题的关键就在这里,经过flash上传后的图片类型变成了app