天天看點

解決apache啟動錯誤"httpd:Could not reliably determine

啟動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 localhost:80

3)再重新啟動apache 即可。

[root@server ~]# /usr/local/apache/bin/apachectl restart