SOFTELメモ Developer's blog

会社概要 ブログ 調査依頼 採用情報 ...
技術者募集中

【Apache2.2】起動時にapr_sockaddr_info_get() failed が発生する

問題

apache をrestart したり configtest したりすると、以下のエラーが発生します。

$ apachectl -t
httpd: apr_sockaddr_info_get() failed for xxxxxxxx
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
Syntax OK

答え

ServerName が設定されていないため。

httpd.conf などで、以下のように適当な名前を付けると出なくなる。

$vi /etc/httpd/conf/httpd.conf
ServerName localhost:80

関連するメモ

コメント