码迷,mamicode.com
首页 > 系统相关 > 详细

如何解决linux下apache启动时httpd: apr_sockaddr_info_get() failed for 报错

时间:2014-05-10 01:41:36      阅读:574      评论:0      收藏:0      [点我收藏+]

标签:c   http   get   strong   文件   使用   

今天在家里的RHLE5.5上安装apache的时候,先用user1用户./configure命令配置,然后才用root用户make && make install,结果apache起来的时候就报如下错误:

 

     httpd: apr_sockaddr_info_get() failed for bogon

     httpd: Could not reliably determine the server‘s fully qualified domain name, using 127.0.0.1 for ServerName

 

    虽然不妨碍使用,可是看着错误总觉得别扭,经过查找发现,这个问题应该是没有在 /etc/httpd/conf/httpd.conf 中设定 ServerName。所以apache会用主机上的名称来取代,首先会去找 /etc/hosts 中有没有主机的定义。

所以要解决这个问题可以设定httpd.conf文件中的 ServerName,如下:

   (1)ServerName localhost:80                        

   或者在 /etc/hosts 中填入自己的主机名称 bogon,如下

   (2)127.0.0.1bogon

 

 

注意

当前系统的主机名请以hostname命令为准,/etc/sysconfig/network中的HOSTNAME设置有可能不一致。

/etc/sysconfig/network 默认主机名是:HOSTNAME=localhost.localdomain

如何解决linux下apache启动时httpd: apr_sockaddr_info_get() failed for 报错,布布扣,bubuko.com

如何解决linux下apache启动时httpd: apr_sockaddr_info_get() failed for 报错

标签:c   http   get   strong   文件   使用   

原文地址:http://www.cnblogs.com/jthb/p/3708056.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!