当前标签: not
【解决】error pulling image configuration: Get https:// ...... x509: certificate has expired or is not yet valid
【问题】进行镜像拉取时报错 【分析】 很多人会被第一句所蒙蔽,按照网上教程进行修改etc/sysconfig/docker,之后发现还是没有用。 其实这里重点是最后一句"certificate has expired",这里一般是本地时间不正确导致证书验证过期,同步时间即可。 ...
2019-12-12 20:26
阅读(1390)
【解决】image ... could not be accessed on a registry to record its digest.
【问题】image jmdiservice:1206 could not be accessed on a registry to record its digest. Each node will access jmdiservice:1206 independently, possibly le...
2019-12-11 16:50
阅读(539)
【解决】OCI runtime exec failed......executable file not found in $PATH": unknown
【问题】使用docker exec + sh进入容器时报错 [root@localhost home]# docker exec -it container-test bash OCI runtime exec failed: exec failed: container_linux.go:346: star...
2019-12-11 16:41
阅读(1274)
Docker学习-VMware Workstation 本地多台虚拟机互通,主机网络互通,解决name or service not known
NAT网络通用配置 测试连接 主机到虚拟机 虚拟机到虚拟机 ,虚拟机到外网 CentOS,提示name or service not known 设置DNS服务器 vi /etc/resolv.conf nameserver 114.114.114.114 重启网卡 如果还不行,...
2019-11-14 16:31
阅读(520)
【Kafka问题解决】Connection to xxx could not be established. Broker may not be available.
请检查Kafka的config/server.properties 看看是否有填写 listeners=PLAINTEXT://kafka-host:9092 advertised.listeners=PLAINTEXT://kafka-host:9092 这里的kafka-host需要在/etc/hosts进...
2019-06-20 13:27
阅读(2301)
【已解决】ERROR: bootstrap checks failed memory locking requested for elasticsearch process but memory is not locked
官网说明: elasticsearch官网建议生产环境需要设置bootstrap.memory_lock: true 官网的解释 是:发生系统swapping的时候ES节点的性能会非常差,也会影响节点的稳定性。所以要不惜一切代价来避免swapping。swapping会导致Java GC的周期延迟从毫秒级恶化...
2019-06-12 14:49
阅读(2593)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe5 in position 0: ordinal not in range(128)
今天我在练习mongo与python交互的时候写了以下代码: #coding=utf-8 from pymongo import * #获得客户端,建立链接 client=MongoClient('mongodb://py3:123@localhost:27017/py3') #切换数据库 db=client.p...
2018-12-27 21:26
阅读(277)
在虚拟机安装Win7出现:directory ezboot not found error loading image:CDMENU.EZB
<>在虚拟机安装Win7出现:directory ezboot not found error loading image:CDMENU.EZB 小编刚开始查询了各种方法解决该问题,也找到原因是由于IOS镜像文件大于4G,按照别人的方法进行解决,但是依然没有解决此问题。像用老毛桃U盘来解决IOS镜像文件大于4G...
2018-10-31 13:50
阅读(2993)