CentOS6/7~配置多个yum源,并设置优先级

Posted yexuesong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS6/7~配置多个yum源,并设置优先级相关的知识,希望对你有一定的参考价值。

yum install -y yum-priorities

#安装yum优先级插件(本文优先级设置为阿里,163,中科大,epel)


cd /etc/yum.repos.d

#CentOS6

wget -O CentOS6-aliyun.repo http://mirrors.aliyun.com/repo/Centos-6.repo
wget -O CentOS6-163.repo http://mirrors.163.com/.help/CentOS6-Base-163.repo
wget -O CentOS6-ustc.repo https://lug.ustc.edu.cn/wiki/_export/code/mirrors/help/centos?codeblock=2
yum -y install epel-release

 #CentOS7

wget -O CentOS7-aliyun.repo http://mirrors.aliyun.com/repo/Centos-7.repo
wget -O CentOS7-163.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo
wget -O CentOS7-ustc.repo https://lug.ustc.edu.cn/wiki/_export/code/mirrors/help/centos?codeblock=3
yum -y install epel-release

#配置priority

技术分享图片

#确认启用配置优先级功能,priority=n ∈(1~99), 值越小,优先级越高。

#分别在对应的*.repo文件中设置好优先级

#示例:

echo >> CentOS7-aliyun.repo
echo "priority=1" >> CentOS7-aliyun.repo

技术分享图片

 

以上是关于CentOS6/7~配置多个yum源,并设置优先级的主要内容,如果未能解决你的问题,请参考以下文章

centos6.7配置本地yum源总结

centos6.7配置本地yum源总结

centos6.7搭建yum源服务器

CentOS6 7 8更换阿里yum源

CentOS配置本地yum源/阿里云yum源/163yuan源,并配置yum源的优先级

Centos7.4配置本地yum源和阿里源并配置yum优先级