CentOS7 配置阿里镜像源

阿里镜像官方地址:http://mirrors.aliyun.com/

镜像站

查看不同版本的系统操作
不同版本的系统操作

下载源
1、安装wget

yum install -y wget
安装wget

2、下载CentOS 7的repo文件

wget -O /etc/yum.repos.d/CentOS-Base.repo

http://mirrors.aliyun.com/repo/Centos-7.repo?spm=a2c4e.11153940.0.0.30112d3dpM8XqF&file=Centos-7.repo

下载repo文件

或者

curl -o /etc/yum.repos.d/CentOS-Base.repo

http://mirrors.aliyun.com/repo/Centos-7.repo?spm=a2c4e.11153940.0.0.30112d3dOoE367&file=Centos-7.repo

3、更新镜像源
清除缓存:

yum clean all

生成缓存:

yum makecache
更新镜像源

更改配置文件(很重要)
1、备份CentOS 7系统自带yum源配置文件/etc/yum.repos.d/CentOS-Base.repo命令:

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

2、找到yum源的配置路径

cd /etc/yum.repos.d
备份找到yum源的配置路径

3、(可以省略该步骤)查看该目录下的所有文件目录:

ll
查看该目录下的所有文件目录

4、打开CentOS-Base.repo文件:

vim CentOS-Base.repo

5、将文件中的所有http开头的地址更改为https(下图中只是列出部分内容,并不完善):
方法:
按 “i” 切换至编辑模式,将http改为https。
按 “Esc”,输入 “:wq”,保存文件并返回。


6、更新yum:

yum update

完成!!!

参考文档:https://yq.aliyun.com/articles/748140

你可能感兴趣的:(CentOS7 配置阿里镜像源)