A-A+
httpd: Could not reliably determine the server’s fully qualified domain name 的解决办法
启动apache的服务时,出现如下信息:
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
解决办法:
进入apache安装目录下,编辑配置文件httpd.conf
将httpd.conf文件中的一行:
# ServerName www.example.com:80 前的注释#去掉。
修改为:
ServerName localhost:80