yum源安裝出錯彙總
一、http://mirrors.aliyun.com/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'mirrors.aliyun.com'"
很大原因是因為當前系統的域名解析出問題,在/etc/resolv.conf裡面加上nameserver 8.8.8.8不是永久的,重啟了網路服務或者系統後又沒了,要永久修改必須修改網絡卡配置檔案,比如/etc/sysconfig/network-scripts/ifcfg-eth0,加上個人想指向的dns伺服器即可:
DNS1=8.8.8.8
DNS2=114.114.114.114
重啟網路服務service network restart後就可以在/etc/resolv.conf看到剛新增的dns了
PS:connect: Network is unreachable報錯是因為閘道器沒配置或者有誤,可直接在ifcfg-eth0裡面加上GATEWAY=你的閘道器,重啟網路即可
二、http://centos.ustc.edu.cn/centos/6.9/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
竟然是個404的錯誤,這不是網站找不到嗎,查了一下網上各種方法都有,自己試了一下清空yum源快取:
yum clean all
然後重新載入:
yum makecache
竟然解決了。。。
三、connect: Network is unreachable
1、區域網可以ping通而廣域網報此錯誤,很大原因是閘道器設定出問題,用route檢視當前閘道器,如下192.168.1.0即當前使用的閘道器:
[[email protected] Desktop]# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 * 255.255.255.0 U 1 0 0 eth0
2、如果此閘道器不是正確的閘道器,編輯網絡卡檔案ifcfg-eth0加上正確閘道器即可:route add default gw 192.168.1.1