0

Is it possible to use mod_jk as reverse proxy without installing Tomcat? I have Apache and JBoss installed, I don't see why I should install Tomcat? Thanks.

hawarden_
  • 1,904
  • 5
  • 28
  • 48

2 Answers2

1

You can make use of the combination mod_jk(Load balancer), JBoss(Application server) and Apache (Webserver). Mod_jk is just for communinication using the protocol AJP13 / AJP12.

Default port for AJP 13 is 8009. Mod_JK 1.2.46, JBoss 7.1.0 GA and Apache 2.4.6 version combination is working perfectly for me.

0

mod_jk just speaks a particular protocol (AJP13 to be specific). It's not bound to Tomcat in any way. Sure, you can use it with other products.

Spoiler alert: JBoss uses Tomcat as it's servlet container internally.

Christopher Schultz
  • 20,221
  • 9
  • 60
  • 77