二、配置步骤
1.备份,将 CentOS-Base.repo 为CentOS-Base.repo.backup
(1)mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2.下载新的 http://mirrors.aliyun.com/repo/Centos-7.repo,并命名为CentOS-Base.repo
(1)wget -O /etc/yum.repos.d/CentOS-Base.repohttp://mirrors.aliyun.com/repo/Centos-7.repo
或者
(2)curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
3.清除缓存
yum clean all # 清除系统所有的yum缓存
yum makecache # 生成yum缓存
yum update
三、epel源 安装和配置
1.查看可用的epel源
yum list | grep epel-release
epel-release.noarch 7-11 extras
2.安装 epel
yum install -y epel-release
......省略.....
3.配置阿里镜像提供的epel源
wget -O /etc/yum.repos.d/epel-7.repo http://mirrors.aliyun.com/repo/epel-7.repo
4、清除缓存
yum clean all # 清除系统所有的yum缓存
yum makecache # 生成yum缓存
yum update
四、监察配置
1.查看yum源:
yum info yum
2.查询打算下载软件的信息,如:
yum search redis 或者 yum list |grep redis
3.检查自己创建的yum源是否可用:
yum list 如果出现很多安装包,说明可用,如果报错说明不可以。
- yum源相当与一个指向软件仓库的连接,通过yum安装软件,实际上是通过链接进入软件仓库获取到相应软件包在安装的。