小tips:

测试yum源能否使用,就看源的url能否在浏览器中访问。

目前可用的几个yum源:

清华大学:https://mirrors4.tuna.tsinghua.edu.cn/centos-vault/
(去链接里查找需要的源,清华各个版本的源挺全的)

搜狐源:http://mirrors.sohu.com/centos/6.10/os/x86_64/ (已失效)

http://file.kangle.odata.cc/repo/Centos-6.repo

http://file.kangle.odata.cc/repo/epel-6.repo

方法一:设置yum搜狐源

1、先备份源文件:

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

2、编辑文件:vi /etc/yum.repos.d/CentOS-Base.repo

vi /etc/yum.repos.d/CentOS-Base.repo`

`[base]
name=CentOS-6
failovermethod=priority
#搜狐源
baseurl=http://mirrors.sohu.com/centos/6.10/os/x86_64/
gpgcheck=0

如果baseurl已失效,换成其他可访问的yum源地址即可。

3、清理软件源

yum clean all

4、建立源数据缓存

yum makecache

方法二:设置其他源

//直接在ssh框中输入
wget -O /etc/yum.repos.d/CentOS-Base.repo http://file.kangle.odata.cc/repo/Centos-6.repo
wget -O /etc/yum.repos.d/epel.repo http://file.kangle.odata.cc/repo/epel-6.repo
yum makecache
//即可