1. YUM源
备份原来的
repo
文件mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
下载新的
CentOS-Base.repo
到/etc/yum.repos.d/
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
运行
yum clean all
yum makecache
更新
yum -y update
EPEL源
EPEL源在CentOS默认不存在,需要下载安装yum list | grep epel-release
yum install epel-release
安装完成后,在
/etc/yum.repos.d
多出如下两个文件epel-testing.repo epel.repo
下载阿里开源镜像的EPEL源
wget -O /etc/yum.repos.d/epel-7.repo http://mirrors.aliyun.com/repo/epel-7.repo
之后运行
yum clean all
yum makecache
生成缓存