apache 到 tomcat:mod_jk 与 mod_proxy
使用 mod_jk
和 mod_proxy
为 apache 提供 tomcat 实例的优点和缺点是什么?
我多年来一直在生产中使用 mod_jk,但我听说这是前端 tomcat 的“旧方法”。 我应该考虑改变吗? 会有什么好处吗?
What are the advantages and disadvantages of using mod_jk
and mod_proxy
for fronting a tomcat instance with apache?
I've been using mod_jk in production for years but I've heard that it's "the old way" of fronting tomcat. Should I consider changing? Would there be any benefits?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这些模块的优缺点比较位于 < a href="http://blog.jboss.org/" rel="noreferrer">http://blog.jboss.org/
mod_proxy
mod_jk
A pros/cons comparison for those modules exists on http://blog.jboss.org/
mod_proxy
mod_jk
如果您想留在 Apache 土地上,您也可以尝试较新的 mod_proxy_ajp,它使用 AJP 协议而不是普通的旧 HTTP 与 Tomcat 通信,但它利用 mod_proxy 来完成工作。
If you wish to stay in Apache land, you can also try the newer mod_proxy_ajp, which uses the AJP protocol to communicate with Tomcat instead of plain old HTTP, but which leverages mod_proxy to do the work.
AJP 与 HTTP
当使用
mod_jk
时,您正在使用AJP
。 使用mod_proxy
时,您将使用HTTP
或HTTPS
。 这本质上就是造成所有差异的原因。Apache JServ 协议 (AJP)
优点
缺点
超文本传输协议 (HTTP)
优点
缺点
AJP vs HTTP
When using
mod_jk
, you are using theAJP
. When usingmod_proxy
you will useHTTP
orHTTPS
. And this is essentially what makes all the difference.The Apache JServ Protocol (AJP)
Pros
Cons
Hypertext Transfer Protocol (HTTP)
Pros
Cons