今天安裝Apache httpd web服務器時,從官方網站上http://www.apache.org/dyn/closer.cgi下載httpd,而後在centos下解壓,安裝過程分爲三部分:html
(1)./configureweb
(2)makeapache
(3)make install (須要root權限)centos
默認安裝在/usr/sbin/下,執行apachectl start時候,提示以下錯誤:服務器
httpd: apr_sockaddr_info_get() failed for shiwei
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerNamedom
因而上網查了一下,根據前人的經驗,問題終於解決了。總結一下,方便之後使用。ide
緣由:這個問題應該是沒有在 /etc/httpd/conf/httpd.conf 中設定 ServerName。因此apache會用主機上的名稱來取代,首先會去找 /etc/hosts 中有沒有主機的定義。網站
解決辦法:ui
(1)能夠設定httpd.conf文件中的 ServerName,以下:ServerName localhost:80 spa
(2)在 /etc/hosts 中填入本身的主機名稱 bogon,以下:127.0.0.1 shiwei (用戶名稱)
參考網址:
http://suo.iteye.com/blog/1096296