问题原因:
httpd服务配置文件,并没有设置解析根地址,无法可靠地确定服务器的完全合格的域名
如何解决?
httpd的配置文件放在 /etc/httpd/conf/目录下,去掉ServerName注释,并把www.example.com:80替换成 127.0.0.1:80
cat httpd.conf |grep ‘ServerName‘ # 查询域名设置 sed ‘s@#ServerName www.example.com:80@ServerName 127.0.0.1:80@g‘ httpd.conf |grep ‘ServerName‘ # 预替换,并查看结果 sed -i ‘s@#ServerName www.example.com:80@ServerName 127.0.0.1:80@g‘ httpd.conf |grep ‘ServerName‘ # 替换 cat httpd.conf |grep ‘ServerName‘ # 查询替换后结果
原文:http://www.cnblogs.com/2bjiujiu/p/7868650.html