近日,准备给某一客户企业部署nagios监控系统,于是在其IBM服务器上最小化安装了Centos 6.3(64bit),却发现刚安装完的系统yum仓库更新不了。提示报错信息:
[root@nagios-server ~]# yum update –y
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Could not retrieve mirrorlist http:///?release=6&arch=x86_64&repo=os error was
14: PYCURL ERROR 6 - "Couldn't resolve host ''"
Error: Cannot find a valid baseurl for repo: base
[root@nagios-server ~]# nslookup
;; connection timed out; no servers couldbe reached
到这里发现问题了,域名解析不了,yum的配置文件里指向的域名就识别不了了。重新设置下dns指向。
[root@nagios-server ~]# vim /etc/resolv.conf
search 38forsbm
nameserver 8.8.8.8
nameserver 218.85.152.99
[root@nagios-server ~]# yum update –y --更新可以使用。