1、什么是yum倉庫?
yum倉庫就是使用yum命令下載軟件的鏡像地址。
我們通常使用 yum install
命令來在線安裝 linux系統的軟件, 這種方式可以自動處理依賴性關系,並且一次安裝所有依賴的軟體包,但是經常會遇到從國外鏡像下載速度慢,無法下載的情況。那么此時我們就需要把我們的yum 源改為國內的鏡像。
yum的配置文件
yum 的配置文件在 /etc/yum.repos.d
目錄下, 其中有多個配置文件,每一個配置文件中都可以配置一個或多個repository
, 但是最終會被合並為一個交給系統,所以多個文件只是為了方便管理。
2、yum倉庫配置
下面提供了多個鏡像倉庫配置說明,實際使用時,選擇其中一個配置即可。
2.1、阿里鏡像倉庫配置
進入阿里鏡像倉庫網站 https://opsx.alibaba.com/mirror
找到centos,點擊右邊的 幫助
,看到阿里鏡像倉庫給出的yum的配置說明。
2.1.1、配置步驟
根據官網的說明,我們詳細說說每步驟的意思。
(1)、備份,將 CentOS-Base.repo
為CentOS-Base.repo.backup
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
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
或者
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
2.1.2、epel源 安裝和配置
(1)、查看可用的epel源
[java@localhost yum.repos.d]$ yum list | grep epel-release
epel-release.noarch 7-11 extras
[java@localhost yum.repos.d]$
(2)、安裝 epel
[java@localhost yum.repos.d]$ 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
2.1.3、查看yum源
查看所有的yum源:
yum repolist all
查看可用的yum源:
yum repolist enabled
2.2、配置 清華大學鏡像倉庫
點擊 ?
進入幫助說明頁面 https://mirrors.cnnic.cn/help/centos/。
頁面提供了 CentOS5
,CentOS6
、CentOS7
的鏡像倉庫配置,下面列出的是CentOS7
的配置。
(1)、首先備份 CentOS-Base.repo
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
(2)、之后啟用 TUNA 軟件倉庫, 將清華大學鏡像倉庫信息
寫入 /etc/yum.repos.d/CentOS-Base.repo
# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client. You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
#
[base]
name=CentOS-$releasever - Base
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/os/$basearch/
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
released updates
[updates]
name=CentOS-$releasever - Updates
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/updates/$basearch/
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/extras/$basearch/
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/centosplus/$basearch/
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
(3)、清除緩存
yum clean all # 清除系統所有的yum緩存
yum makecache # 生成yum緩存
yum update
</div>
原文地址:https://blog.csdn.net/xiaojin21cen/article/details/84726193