准备阶段
检查wget是否下载
yum install -y wget
阿里源配置
1.进入yum源的配置文件下
cd /etc/yum.repos.d/ # 进入到yum源的配置文件中
rm -rf * # 清空所有的yum源文件
# 下载阿里云的官方镜像源
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
2.yum源的必敲命令:
#以下两条命令在换yum源之后必做,不然可能会出问题!
yum clean all # 清理yum缓存
yum makecache # 缓存软件包信息(提高搜索/安装软件的速度)