web-dev-qa-db-ja.com

Apache httpdエラー「proxy:ap_get_scoreboard_lb」とProxyPass

TomcatのプロキシとしてApacheを設定しましたが、ページをターゲットにすると次のエラーが発生します。空白のページまたは503が表示されることがあります。

[エラー]

[Mon Dec 03 04:58:16 2012] [error] proxy: ap_get_scoreboard_lb(2) failed in child 29611 for worker proxy:reverse
[Mon Dec 03 04:58:16 2012] [error] proxy: ap_get_scoreboard_lb(1) failed in child 29611 for worker https://localhost:8443/
[Mon Dec 03 04:58:16 2012] [error] proxy: ap_get_scoreboard_lb(0) failed in child 29611 for worker http://localhost:8080/

次のように2つのvhostsがvmで構成されています。

[httpホスト]

<VirtualHost *:80>
  ServerName www.mysite.net
  ServerAlias mysite.net

  ProxyRequests Off
  ProxyPreserveHost On

  <Proxy *>
    Order deny,allow
    Allow from all
  </Proxy>

  ProxyPass / http://localhost:8080/ retry=0
  ProxyPassReverse / http://localhost:8080/ retry=0
</VirtualHost>

[ssl vhost]

<VirtualHost *:443>
        ServerName www.mysite.net
        ServerAlias mysite.net

        ErrorLog /var/log/Apache2/error.log

        LogLevel warn

        CustomLog /var/log/Apache2/access.log combined
        ServerSignature On

        SSLEngine on
        SSLProxyEngine on
        SSLCertificateFile /etc/Apache2/ssl/server.crt
        SSLCertificateKeyFile /etc/Apache2/ssl/server.key

        ProxyRequests Off
        ProxyPreserveHost On
        ProxyPass / https://localhost:8443/ retry=0
        ProxyPassReverse / https://localhost:8443/ retry=0

</VirtualHost>

私のシステムの詳細は次のとおりです。Apache/ 2.2.22(Ubuntu)mod_jk/1.2.32 mod_ssl/2.2.22 OpenSSL/1.0.1 mod proxy_httpも有効になっています。

12
Dark Star1

Apacheを停止してから開始することとapachectl gracefulを再起動することには違いがあるようです(つまり、apachectl restartとは対照的に、実際には停止して開始します)。 this site にあるとおり:

This is a bit of a guess, and probably wrong, but does stopping and 
starting the server rather than restarting (they're different, 
restarting (including gracefully) doesn't kill the master process) 
help? As I understand it, there are issues in mod_proxy regarding the 
scoreboard size when changes to the config are made between restarts.
10
Dark Star1