问题1
net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
原因是国内下载官方镜像点提供的镜像时,速度缓慢,超时。使用加速器就可以解决这个问题。需要创建配置文件daemon.conf
vim /etc/docker/daemon.conf
在文件中写入:
{
“registry-mirrors”:[“http://141e5461.m.daocloud.io”]
}
然后重启进程:
systemctl daemon-reload
systemctl restart docker
问题2
CentOS7安装docker后启动失败,出现Job for docker.service failed…错误,导致docker服务不能启动。原因是CentOS启用了SELinux的安全机制,可以将该安全机制关闭。
查看docker进程是否正常启动
docker version
发现只有client,没有server,将SELinux安全机制关闭
修改文件 /etc/sysconfig/selinux , 将selinux属性值改为disabled。然后重启系统
systemctl restart docker
参考文档
https://blog.csdn.net/lixiaoyaoboy/article/details/82667510