網頁

2013年9月14日

[php] 解決「httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName.」錯誤訊息

在啟動apache時出現「httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName.」錯誤訊息,只需要設定主機名稱就可以解決。


步驟一:設定httpd.conf
vim /etc/httpd/conf/httpd.conf
找到這行
#ServerName www.example.com:80
去掉前面#字符號,設定主機名稱
ServerName www.mydomain.com:80


步驟二:設定hosts
vim /etc/hosts
將剛才設定的主機名稱設定對應的IP位址
192.168.0.1 blog.nux.tw


步驟三:設定主機名稱
執行「hostname www.mydomain.com」指令


步驟四:完成上述步驟後,再重新下apache啟動指令。