Apache启动不了,httpd: apr_sockaddr_info_get() failed for apache 启动问题

来源:互联网 发布:监控安装设计软件 编辑:程序博客网 时间:2024/06/04 19:10

CentOS 6.4 环境搭建出现的问题:

在启动 httpd 时出现

正在启动 httpd:httpd: apr_sockaddr_info_get() failed for hostname
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName


去找 /etc/hosts 中有没有主机的定义

先查看自己的主机名 # hostname

 

vim /etc/hosts

将有127.0.0.1的那一行改为127.0.0.1   localhost.localdomain localhost [你自己的主机名]


修改/etc/httpd/conf/httpd.conf文件中的ServerName HOSTNAME为
ServerName 127.0.0.1:80 ,保存退出。


重启apache

/etc/init.d/httpd restart

 successful!!