centos7配置阿里镜像源的步骤【转】

阿里镜像官方地址http://mirrors.aliyun.com/

1、点击官方提供的相应系统的帮助 :
centos7配置阿里镜像源的步骤【转】_第1张图片
2、查看不同版本的系统操作:
centos7配置阿里镜像源的步骤【转】_第2张图片

 1. 备份

备份Centos7系统自带的yum源配置文件(/etc/yum.repos.d/CentOS-Base.repo)

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

2. 下载阿里云yum源文件

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
或
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

3. 更改CentOS-Base.repo

更改阿里云的yum源文件,将所有http更改为https,不改有的镜像下不下来

centos7配置阿里镜像源的步骤【转】_第3张图片

4. 更新现有镜像源

# 清除缓存:
yum clean all 
# 生成缓存
yum makecache

5. 更新yum

yum update

6.补充:为yum配置代理

在/etc/yum.conf中添加:

 proxy=http://192.168.2.56:8080
 proxy_username=hanzhc
 proxy_password=19920104Caishuang  

你可能感兴趣的:(centos7配置阿里镜像源的步骤【转】)