Docker pull或Docker search

docker pull遇到的问题:

Error response from daemon: Get "https://registry-1.docker.io/v2/": dial tcp: lookup registry-1.docker.io on [::1]:53: read udp [::1]:34858->[::1]:53: read: connection refused

如果出现类似问题,可在vi /etc/resolv.conf  此文件中添加  nameserver 8.8.8.8

然后重启网络 systemctl restart network 再执行试试

如果还不行,出现此报错:Error response from daemon: Get "https://registry-1.docker.io/v2/": dial tcp: lookup registry-1.docker.io on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable

vim /etc/sysconfig/network-scripts/ifcfg-ens33 中添加

GATEWAY=192.168.65.2 (网关要结合自己的ip地址设定,比如我的ip地址为192.168.65.xxx,则网关ip为192.168.65.x)
NETMASK=255.255.255.0
DNS1=8.8.8.8

注!再次重启网络 systemctl restart network 即可

                                                                                                               作者:正在努力学习的小白

你可能感兴趣的:(docker,容器,运维)