Apacheのエラー:Could not reliably determine the server’s fully qualified domain name…
Apacheを再起動した際に、
httpd: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName
というエラーが出る場合がある。
これでも起動はするので、Apache自体は動くのだが、エラーをそのままにしておくのは気持ちが悪いし、あとあと問題を引き起こす可能性が高い。
日本語訳をすると
ServerNameに127.0.0.1を使用した、FQDN(完全に適切なドメイン名)が確定できませんでした。
といった感じか。
このエラーは、/etc/hosts にlocalhost以外に自分で設定したホスト名が、Apacheの設定ファイルに定義されていないために発生する。
# Do not remove the following line, or various programs # that require network functionality will fail. 127.0.0.1 dacelo localhost.localdomain localhost
と書いた場合、/etc/httpd/conf/httpd.conf のServerNameの設定にも次のように書いておく。
# 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 this is not set to valid DNS name for your host, server-generated # redirections will not work. See also the UseCanonicalName directive. # # If your host doesn't have a registered DNS name, enter its IP address here. # You will have to access it by its address anyway, and this will make # redirections work in a sensible way. # #ServerName www.example.com:80 ServerName dacelo:80
広告
httpd.confをいじるべし
参考になりました。ありがとうございます(^^
解決できました!ありがとうございました。
大変参考になりまりました。
いつも気になっていたのですが、無視してました。
こんなに簡単に直るとは・・・。
有難うございました。
なるほどです。ありがとうございました。
Linux初心者なので大変助かりました。
ありがとうございました。
お役に立てて何よりです!
参考になりました。
ありがとうございました。
解決できました。
よくあるApatcheのエラー / Apacheのエラー:Could not reliably determine the server’s fully qualified domain name… | apache | 『Weblog… http://htn.to/v7Q5SQ
lionインストール時に出た。ServerName localhost:80にとりあえずしといた。
ServerName localhost:80でOK
RT @TopsyRT: Apacheのエラー:Could not reliably determine the server's fully qualified domain name… http://t.co/DZmwG3eu
Apacheのエラー:Could not reliably determine the server’s fully qualified domain name… | apache |… http://t.co/U3OIDjcI : Favorite's Hatebu
[apache] Apacheのエラー:Could not reliably determine the server’s fully qualified domain name… | Weblogy http://t.co/2HFu7hxD
これにて解決 RT @TopsyRT: Apacheのエラー:Could not reliably determine the server's fully qualified domain name… http://t.co/Wg4NJ9Wr
[apache] / “Apacheのエラー:Could not reliably determine the server’s fully qualified domain name… | apache | 『Weblogy』” http://t.co/ngVLkaPa
“/etc/httpd/conf/httpd.conf”
助かりました。ありがとうございます。
Apacheのエラー:Could not reliably determine the server’s fully qualified domain name…
説明がめんどい(´・ω・`)
[2016-05-24 16:05]
まさにこれ。VagrantでUbuntu入れた後はネットワークアダプターが複数追加されている状態なので、Apacheにアクセスできる方を追加する。