httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

概要

Apache再起動時に以下のようなエラー文が表示される。
※Apache自体は問題なく再起動できています。

1
2
3
4
5
service httpd restart

httpd を停止中: [ OK ]
httpd を起動中: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
[ OK ]

ServerNameに127.0.0.1を使用しているFQDNを確実に判断できません。

原因

/etc/hosts で「127.0.0.1」で設定されているhost名がApache設定ファイルで定義されていない

hogehostについてApache定義ファイルで設定されていない。

1
127.0.0.1      hogehost localhost.localdomain localhost

/etc/httpd/conf/httpd.conf

1
2
#ServerName www.example.com:80
ServerName hogehost:80

httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

https://kenzo0107.github.io/2015/03/15/2015-03-16-httpd-error-could-not-reliably-determine-the-servers-fully-qualified-domain-name/

Author

Kenzo Tanaka

Posted on

2015-03-16

Licensed under

コメント