httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
概要
Apache再起動時に以下のようなエラー文が表示される。
※Apache自体は問題なく再起動できています。
1 | service httpd restart |
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 | #ServerName www.example.com:80 |
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName