解决Centos8无法安装docker的问题

时间:2022-07-28
本文章向大家介绍解决Centos8无法安装docker的问题,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

出现问题

[root@zh ~]# 
[root@zh ~]# 
[root@zh ~]# yum -y install docker
上次元数据过期检查:0:08:25 前,执行于 2020年08月05日 星期三 20时28分10秒。
未找到匹配的参数: docker
错误:没有任何匹配: docker
[root@zh ~]# 
1234567

解决办法

首先测试一下是否能ping通外网:

[root@zh ~]# 
[root@zh ~]# 
[root@zh ~]# 
[root@zh ~]# ping www.baodu.com
PING www.baodu.com (115.29.223.128) 56(84) bytes of data.
64 bytes from 115.29.223.128 (115.29.223.128): icmp_seq=1 ttl=55 time=23.7 ms
64 bytes from 115.29.223.128 (115.29.223.128): icmp_seq=2 ttl=55 time=23.6 ms
64 bytes from 115.29.223.128 (115.29.223.128): icmp_seq=3 ttl=55 time=23.7 ms
64 bytes from 115.29.223.128 (115.29.223.128): icmp_seq=4 ttl=55 time=23.6 ms
^C
--- www.baodu.com ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 8ms
rtt min/avg/max/mdev = 23.637/23.660/23.700/0.024 ms
[root@zh ~]# 
1234567891011121314

是可以的。

安装源:

yum install https://download.docker.com/linux/fedora/30/x86_64/stable/Packages/containerd.io-1.2.6-3.3.fc30.x86_64.rpm
1

重新测试: 是可以的。