一般我们用到的VPS主机商内置的yum源不会出什么问题,但是难免会有一些速度或者线路问题导致源连接不上导致无法yum安装包的执行。这个时候我们可以替换其他源,其实提供源镜像的商家还是比较多的,比如163、阿里都有提供,在这里笨笨网整理阿里YUM源,如果有需要可以更换。
在这篇文章中,笨笨网整理适合centos5、6、7三种环境的镜像更换,但是在更换之前最好备份已有的源文件,万一出错还可以恢复。
第一步、备份文件
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
第二、选择更换源文件
CentOS5
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
CentOS6
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
CentOS7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
第三、运行生效
yum clean all
yum makecache
然后我们再去执行yum,将都使用阿里云的镜像。
