## 删除默认源
rm -rf /etc/yum.repos.d/*
## 配置阿里云的centos7镜像和epel7镜像
wget -O /etc/yum.repos.d/Centos-Base.repo
http://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/epel.repo
http://mirrors.aliyun.com/repo/epel-7.repo
##查看yum源
yum clean all
yum makecache
yum repolist all
1
2
3
4
5
6
7
8
9
10
11
评论