centos yum 源停用整改
背景
centos远程yum源正式下线,需要针对实用centos的yum源进行整改;
影响范围
- 配置centos基础yum源的云主机;
- 使用centos基础docke镜像的业务Dockerfile
整改方案
centos 更换阿里云 yum 源
#阿里云操作系统源
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
yum clean all
yum makecache
#阿里云基础软件源
wget -O /etc/yum.repos.d/epel.repo https://mirrors.aliyun.com/repo/epel-7.repo
yum clean all
yum makecache