Apacheのエラー[httpd: Could not reliably determine the server’s fully qualified domain name]を対策する方法

Apacheのエラー[httpd: Could not reliably determine the server's fully qualified domain name]を対策する方法 サーバー

Apacheの起動時や、「apachectl -V」でApacheの状態を確認した際に、
「httpd: Could not reliably determine the server’s fully qualified domain name ~以下略…」
というエラーが出るときがある。

そんなときの対策方法です。

※動作確認環境
CentOS 7.6
Apache 2.4.6

原因

Apacheの設定ファイル「httpd.conf」にて「ServerName」が設定されていない時にこのエラーが表示されます。

対策

vi等でApacheの設定ファイル「httpd.conf」を開きます。

「#ServerName www.example.com:80」という行のコメントを消して、現在利用中のドメイン(又はホスト名)を記入して保存します。

バーチャルホストで複数のサイトを公開している場合や、ローカル環境でのApacheの場合は、「ServerName localhost:80」と記入しましょう。

Apacheを再起動します。

エラーが消えたか「apachectl -V」で確認します。

OKです。
エラーが消えました。

以上で解決です。

タイトルとURLをコピーしました