1. ホーム
  2. apache

[解決済み] Apache から tomcat へ:mod_jkとmod_proxyの比較

2022-09-30 18:36:40

質問

のメリットとデメリットを教えてください。 mod_jkmod_proxy は、apache で tomcat インスタンスをフロント処理するためのものですか?

私は何年も mod_jk を使用していますが、これは tomcat をフロントする古い方法だと聞いています。変更を検討すべきでしょうか? 何か利点があるのでしょうか?

どのように解決するのですか?

これらのモジュールの長所と短所の比較は、以下のサイトにあります。 http://blog.jboss.org/

mod_proxy

* Pros:
      o No need for a separate module compilation and maintenance. mod_proxy,
        mod_proxy_http, mod_proxy_ajp and mod_proxy_balancer comes as part of 
        standard Apache 2.2+ distribution
      o Ability to use http https or AJP protocols, even within the same 
        balancer.
* Cons:
      o mod_proxy_ajp does not support large 8K+ packet sizes.
      o Basic load balancer
      o Does not support Domain model clustering

mod_jk

* Pros:
      o Advanced load balancer
      o Advanced node failure detection
      o Support for large AJP packet sizes
* Cons:
      o Need to build and maintain a separate module