httpd: apr_sockaddr_info_get() failed for zz
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
出现apache无法启动的问题
解决办法:
这个问题应该是没有在 /etc/httpd/conf/httpd.conf 中设定 ServerName 所以它会用主机上的名称来取代,首先会去找 /etc/hosts 中有没有主机的定义。
所以要解决这个问题可以设定 ServerName 或者在 /etc/hosts 中填入自己的主机名称 MYHOST,像这样:
>vi /etc/hosts
127.0.0.1 localhost.localdomain localhost MYHOST
顺便修改:httpd.config ServerName localhost:80; 去掉#号