Apacheリバースプロキシ:プロトコルハンドラーなし


20

Apacheを使用してリバースプロキシを構成しようとしていますが、No protocol handler was valid for the URLエラーが発生しますが、これは理解できません。

これは、Apacheの関連する構成です。

ProxyRequests Off
ProxyPreserveHost On

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

ProxyPass        /gonvaled/examples/jsonrpc/output/services/ http://localhost:8000/services/
ProxyPassReverse /gonvaled/examples/jsonrpc/output/services/ http://localhost:8000/services/

リクエストは次のようにApacheに到達しています:

POST /gonvaled/examples/jsonrpc/output/services/EchoService.py HTTP/1.1

そして、次の場所にある私の内部サービスに転送する必要があります。

0.0.0.0:8000/services/EchoService.py

これらはログです:

==> /var/log/apache2/error.log <==
[Wed Jun 20 02:05:20 2012] [debug] proxy_util.c(1506): [client 127.0.0.1] proxy: http: found worker http://localhost:8000/services/ for http://localhost:8000/services/EchoService.py, referer: http://localhost/gonvaled/examples/jsonrpc/output/JSONRPCExample.safari.cache.html
[Wed Jun 20 02:05:20 2012] [debug] mod_proxy.c(998): Running scheme http handler (attempt 0)
[Wed Jun 20 02:05:20 2012] [warn] proxy: No protocol handler was valid for the URL /gonvaled/examples/jsonrpc/output/services/EchoService.py. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
[Wed Jun 20 02:05:20 2012] [debug] mod_deflate.c(615): [client 127.0.0.1] Zlib: Compressed 614 to 373 : URL /gonvaled/examples/jsonrpc/output/services/EchoService.py, referer: http://localhost/gonvaled/examples/jsonrpc/output/JSONRPCExample.safari.cache.html

==> /var/log/apache2/access.log <==
127.0.0.1 - - [20/Jun/2012:02:05:20 +0200] "POST /gonvaled/examples/jsonrpc/output/services/EchoService.py HTTP/1.1" 500 598 "http://localhost/gonvaled/examples/jsonrpc/output/JSONRPCExample.safari.cache.html" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.162 Safari/535.19"

回答:


26

問題が見つかりました。proxy_httpモジュールは、(私が持っていただけのApacheであまりにもアクティブにする必要がありますproxy_htmlproxy


23

私にとっては、Apacheで httpd 2.4では、これは末尾のスラッシュが欠けていたために起こりました:

動作しませんでした:

    <Proxy balancer://mycluster>
        BalancerMember http://192.168.111.7
        BalancerMember http://192.168.111.80
    </Proxy>
    ProxyPass / balancer://mycluster
    ProxyPassReverse / balancer://mycluster

働いた!

    <Proxy balancer://mycluster>
        BalancerMember http://192.168.111.7
        BalancerMember http://192.168.111.80
    </Proxy>
    ProxyPass / balancer://mycluster/
    ProxyPassReverse / balancer://mycluster/

/最後に追加)


私にとっては、Apache 2.2.15、最後の<kbd> / </ kbd>が動作します。THX!

Apache / 2.4.10(Debian)で助けてくれました。これは文書化する必要があります!エラーメッセージは非常に鈍角である
DeveloperChris

2

答えを探している人にとって、別の可能性は、バックエンドへのURLサービス名も欠落していることです。LogLevel Debug、およびmod_proxyおよびmod_proxy_fcgiを使用すると、次のように表示されました。

[debug] proxy: fgci: found worker fgci://127.0.0.1:9000/var/www/html/.../index.php [debug] mod_proxy.c(1026): Running scheme fgci handler (attempt 0) [debug] mod_proxy_fcgi.c(800): [client ...] AH01076: url: fgci://127.0.0.1:9000/var/www/html/.../index.php proxyname: (null) proxyport: 0 [debug] mod_proxy_fcgi.c(805): [client ...] AH01077: declining URL fgci://127.0.0.1:9000/var/www/html/.../index.php [warn] proxy: No protocol handler was valid for the URL /.../index.php. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.

ありがたいことにmod_proxy_fastcgi(RHEL6でApache 2.2のバックポートを使用しています)のコードはhttps://github.com/ceph/mod-proxy-fcgi/blob/master/mod_proxy_fcgi.c#L805で入手できますコードの一部:

if (strncasecmp(url, "fcgi:", 5) != 0) {
    ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(01077) "declining URL %s", url);
    return DECLINED;
}

ログをよく見ると(メッセージを発行するコードを見て初めて気づいたのですがfcgi://...)、スペルが間違っていることがわかります。fgci://...

そのため、次のdeclining URLいずれかを意味します:

  • サービスを受け入れるハンドラーがロードされていない(例:fcgi :)、または
  • サービス名のつづりを間違えています。

1
この回答の「このエラーが表示されたときの意味...」の部分のため、私は賛成しました。これはほとんどの検索者を正しい方向に導くはずだと思います。
17
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.