网易开源镜像站
阿里开源镜像站

1. YUM源

  1. 备份原来的repo文件

    1. mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
  2. 下载新的CentOS-Base.repo/etc/yum.repos.d/

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

    1. yum clean all
    2. yum makecache
  4. 更新

    1. yum -y update
  • EPEL源
    EPEL源在CentOS默认不存在,需要下载安装

    1. yum list | grep epel-release
    2. yum install epel-release
  • 安装完成后,在/etc/yum.repos.d多出如下两个文件

    1. epel-testing.repo epel.repo
  • 下载阿里开源镜像的EPEL源

    1. wget -O /etc/yum.repos.d/epel-7.repo http://mirrors.aliyun.com/repo/epel-7.repo
  • 之后运行

    1. yum clean all
    2. yum makecache
  • 生成缓存