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!!