Linux设置yum源为阿里云镜像源

1、删除原yum源
cd /etc/yum.repos.d
 
# 删除原yum源
rm -rf /etc/yum.repos.d/*


2、下载阿里云Centos-7.repo文件 
# wget命令下载: wget [options] [url]
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
 
# curl命令下载: curl [options] [url]
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

3、yum clean all 清理缓存,重新加载yum

4、yum makecache 重新生成缓存

5.查看yum源信息,已经更换为了阿里云镜像源

yum repolist

6.验证

yum -y install tomcat

———————————————

你可能感兴趣的:(linux,阿里云,运维)