yum源加速,替换为阿里云镜像
Posted zhuang229
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yum源加速,替换为阿里云镜像相关的知识,希望对你有一定的参考价值。
背景
使用yum命令安装mysql时,发现下载速度很慢,于是决定换成阿里的yum源
解决方法
参考自:https://www.jianshu.com/p/b7cd2f9fb8b7
首先备份一下原先的yum源,避免出错无法恢复
cd /etc/yum.repos.d/
mv CentOS-Base.repo CentOS-Base.repo.bak
然后修改base.reop源
wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
安装epel.repo源
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
刷新缓存
yum clean all
yum makecache
总结
- 这种问题很常见,就比如maven的中央仓库源,Docker的镜像拉取源,都可以进行修改为国内服务器提升下载速度,最常见的就是阿里云的镜像
以上是关于yum源加速,替换为阿里云镜像的主要内容,如果未能解决你的问题,请参考以下文章