- 启动apache遇到错误:httpd: Could not reliably determine the server’s fully qualified domain name12[root@server httpd-2.2.4]# /usr/local/apache/bin/apachectl starthttpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
进入apache的安装目录:(视个人安装情况而不同)
1[root@server ~]# cd /usr/local/apache/conf编辑httpd.conf文件,搜索”#ServerName”,添加ServerName localhost:80
12345[root@server conf]# lsextra httpd.conf magic mime.types original[root@server conf]# vi httpd.conf#ServerName www.example.com:80ServerName localhost:80再重新启动apache 即可。
1[root@server ~]# /usr/local/apache/bin/apachectl restart