CentOS7使用阿里yum源

目录
[toc]

禁用 yum插件 fastestmirror

  1. 修改插件的配置文件
1
2
cp /etc/yum/pluginconf.d/fastestmirror.conf /etc/yum/pluginconf.d/fastestmirror.conf.bak 
vi /etc/yum/pluginconf.d/fastestmirror.conf

enabled = 1由1改为0,禁用该插件

  1. 修改yum的配置文件
1
2
cp /etc/yum.conf /etc/yum.conf.bak
vi /etc/yum.conf

plugins=1改为0,不使用插件

获取阿里云 repo

1
2
3
4
5
6
cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak

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

cp /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo.bak
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

清理缓存,重建缓存

1
2
yum clean all
yum makecache

完工。