CentOS7更换yum源为阿里云yum源
使用root账户进行操作,如果当前用户不是root用户。使用su命令进行提权。
1.进入yum配置文件目录
cd /etc/yum.repos.d
2.备份yum源,方便操作失败之后进行恢复
mv CentOS-Base.repo CentOS-Base.repo.bak
3.获取阿里云镜像文件
wget http://mirrors.aliyun.com/repo/Centos-7.repo
4.更换yum文件为阿里云镜像
mv Centos-7.repo CentOS-Base.repo
5.清除之前的yum缓存,然后重新生成缓存
yum clean all
yum makecache
yum update