Apache起動時のエラーメッセージの解決
1744 ワード
Starting httpd: httpd: apr_sockaddr_info_get() failed for centos-minimal.xxxx.com
apache起動時プロンプトapr_sockaddr_info_get()エラーは、/etc/hostnameとhostnameが一致しないためです.
hostnameコマンドを使用して、サーバのホスト名を確認します.
/etc/hostsファイルを開きます.元の内容は次のとおりです.
最後に検索したホスト名を追加します.
httpサービスを再起動し、apr_をプロンプトしません.sockaddr_info_get()が間違っています.
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using centos-minimal.xxxx.com for ServerName
これは、httpd.confにサーバNameが設定されていないため、httpdの起動時にhostnameをサーバ名として使用します.これは実は間違いと言うべきではなく、警告と見なすことができる.
/etc/http/conf/http.confを開き、Server Nameを見つけます.
実際のホスト名に変更:
httpサービスを再起動すると、上記の警告メッセージは表示されないはずです.
apache起動時プロンプトapr_sockaddr_info_get()エラーは、/etc/hostnameとhostnameが一致しないためです.
hostnameコマンドを使用して、サーバのホスト名を確認します.
#> hostname
centos-minimal.xxxx.com
/etc/hostsファイルを開きます.元の内容は次のとおりです.
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
最後に検索したホスト名を追加します.
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 centos-minimal.xxxx.com
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 centos-minimal.xxxx.com
httpサービスを再起動し、apr_をプロンプトしません.sockaddr_info_get()が間違っています.
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using centos-minimal.xxxx.com for ServerName
これは、httpd.confにサーバNameが設定されていないため、httpdの起動時にhostnameをサーバ名として使用します.これは実は間違いと言うべきではなく、警告と見なすことができる.
/etc/http/conf/http.confを開き、Server Nameを見つけます.
#ServerName www.example.com:80
実際のホスト名に変更:
ServerName centos-minimal.xxxx.com:80
httpサービスを再起動すると、上記の警告メッセージは表示されないはずです.