> CentOS > CentOS故障 >

Could not retrieve mirrorlist

Could not retrieve mirrorlist [url]http://mirrorlist.centos.org/?release=5&arch=i386&repo=os

CentOS 系统下(其他系统也适用)

[root@localhost ~]# yum -y install wget    (注:在下载wget命令并安装)
Could not retrieve mirrorlist [url]http://mirrorlist.centos.org/?release=5&arch=i386&repo=os[/url] error was
[Errno 4] IOError: <urlopen error (-3, '\xe5\x9f\x9f\xe5\x90\x8d\xe8\xa7\xa3\xe6\x9e\x90\xe6\x9a\x82\xe6\x97\xb6\xe5\xa4\xb1\xe8\xb4\xa5')>
Error: Cannot retrieve repository metadata (repomd.xml) for repository: base. Please verify its path and try again

不管是用上面还是用下面那命令都会出现那错误
原因:没有配置resolv.conf
解决方法:
到/etc目录下配置resolv.conf加入nameserver IP
保存再次运行上面命令就可以。

/etc/resolv.conf
该文件是DNS域名解析的配置文件,它的格式很简单,每行以一个关键字开头,后接配置参数。resolv.conf的关键字主要有四个,分别是:

nameserver    #定义DNS服务器的IP地址
domain        #定义本地域名
search        #定义域名的搜索列表
sortlist      #对返回的域名进行排序
/etc/resolv.conf的一个示例:

domain xxxx.com
search www.xxxx.com xxxx.com
nameserver 202.97.224.68 黑龙江省网通的DNS地址
nameserver 202.97.224.69
nameserver 8.8.8.8 谷歌的DNS地址
最主要是nameserver关键字,如果没指定nameserver就找不到DNS服务器,其它关键字是可选的。

(责任编辑:IT)