apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
站在用戶的角度思考問題,與客戶深入溝通,找到相城網(wǎng)站設(shè)計與相城網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:網(wǎng)站建設(shè)、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、域名注冊、網(wǎng)站空間、企業(yè)郵箱。業(yè)務(wù)覆蓋相城地區(qū)。
問題情況:
[c-sharp] view plaincopy
$ sudo /etc/init.d/apache2 restart
* Restarting web server apache2
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
解決步驟:
為了解決這個問題,你需要編輯下面這個httpd.conf文件,打開它并根據(jù)如下操作進行編輯:
[c-sharp] view plaincopy
sudo gedit /etc/apache2/httpd.conf
默認的httpd.conf是個空文件,現(xiàn)在向里面加入如下內(nèi)容:
[c-sharp] view plaincopy
ServerName localhost
這里可以改成自己網(wǎng)站域名如www.baidu.com
保存并退出。
最后重啟服務(wù)器:
[c-sharp] view plaincopy
sudo /etc/init.d/apache2 restart
http://blog.csdn.net/firstboy0513/article/details/5866133