三年高清观看免费大全,三年成都中文在线观看免费版,三年大片大全免费观看大全,三年大片免费观看大全电影,三年成全免费观看影视大全,三年成全在线观看免费版

  • IDC銷售:020-66849165/66849090/66849088
  • 云服務銷售:020-66849108/9091 | 客服(備案,域名,虛機,郵箱):020-66849000-2

登錄 | 會員注冊 | 控制面板 | 幫助中心 | 購物車 | 舉報中心

? ? 域名活動
幫助中心FAQ

httpd.exe: Could not reliably determine the server’s fully qualified domain name

 

 

查看系統(tǒng)日志,看到這個錯誤:
httpd.exe: Could not reliably determine the server’s fully qualified domain name, using 192.168.1.xx for ServerName

 


雖然apache能正常運行,但是覺得不爽,查了一下原來是因為DNS沒配置好。我們細看httpd.conf文件的時候,可以看到以下:

# ServerName gives the name and port that the server uses to identify itself.

# This can often be determined automatically, but we recommend you specify

# it explicitly to prevent problems during startup.

#

# If your host doesn't have a registered DNS name, enter its IP address here.

#

#ServerName www.example.com:80

apache啟動時可能會查詢DNS來驗證ServerName的配置,我們只要在httpd.conf文件加入 ServerName localhost:80 重啟apache即可,localhost這里我們就填寫自己服務器的IP地址。