【Docker】Segmentation Fault or Critical Error encountered. Dumping core and abort

CentOS7 安装Docker后,load镜像时出现以下错误:

Segmentation Fault or Critical Error encountered. Dumping core and aborting.

原因是我在安装时使用的 yum install docker,但实际上需要安装docker-io。

重新安装

查询已安装的docker:

yum list installed |grep docker

卸载:

yum -y remove docker.x86_64

重装:

yum install docker-io

启动:

service docker start

查看是否按照成功:

docker ps

命令执行结果如下:

猜你喜欢

转载自blog.csdn.net/Detector_/article/details/79802179