啓動apache遇到錯誤:httpd: Could not reliably determine the server's fully qualified domain name [root@server httpd-2.2.4]# /usr/local/apache/bin/apachectl start httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName 1)進入apache的安裝目錄:(視我的安裝狀況而不一樣) [root@server ~]# cd /usr/local/apache/conf 2)編輯httpd.conf文件,搜索"#ServerName",添加ServerName localhost:80 [root@server conf]# ls extra httpd.conf magic mime.types original [root@server conf]# vi httpd.conf #ServerName www.example.com:80 ServerName localhost:80 3)再從新啓動apache 便可。 [root@server ~]# /usr/local/apache/bin/apachectl restart