mod_jk is the connector used to connect the Tomcat servlet container with web servers using AJP protocol.

learn more… | top users | synonyms

1
vote
1answer
19 views

What is the best way to install Mod_jk on linux to run apache in front of tomcat

I am using Wordpress for my blog and my main project is in java using tomcat server so I want each request coming to my server to go through apache. For exemple if my site uses www.sample.com I ...
-1
votes
1answer
40 views

mod_jk not working with apache2.4 and tomcat7

linux tomcat 7 apache 2.4 We already have tomcat6 and apache2.2 working on this server. I am attempting to get the newer versions running for out next project. Apache2.4 is working and listening on ...
0
votes
0answers
11 views

Setting up tomcat6 using mod_jk for Apache, page not found using https

I have been trying to setup an Apache web server along with a Tomcat6 web server, using SSL/HTTPS. On my Apache web server the SSL is working correctly, and I can access the web pages it serves up ...
-1
votes
1answer
35 views

Getting mod_jk running [closed]

I am trying to get Apache to forward requests to the examples that come with Tomcat. I did it once on another machine a few months ago, but on this new server I am stump. Tomcat is running fine, ...
0
votes
0answers
45 views

Apache VirtualHost Serving Tomcat Servlet

I'm running CentOS, Apache 2.2.24, and Tomcat 7.0.32 on a server with a number of virtual hosts. I also have root access to modify httpd.conf, server.xml, etc. A java application is successfully ...
1
vote
0answers
21 views

Caching dynamic content from Tomcat through Apache

I would like to cache dynamic content coming from Tomcat. However, the lifespan of the content is pretty short (max 15 minutes) before an update is needed. Would this be possible using something like ...
0
votes
1answer
34 views

Apache with mod_jk Tomcat change DNS Timeout (TTL)

I'm using GSLB APP for geo-distribution and load-balancing. The APP is Apache --> Tomcat througth mod_jk in workers.properties I have some like this: worker.balancing.port=8009 ...
0
votes
0answers
19 views

configure eclipse with apache connected to tomcat using mod_jk

I have to work with an apache server connected to tomcat using mod_jk and the apache configured to work with another folder as root folder. In this situation, do you now how how I can configure the ...
0
votes
1answer
88 views

Where put workers.properties for mod_jk.so Tomcat connector to Apache httpd (OS X)?

I'm trying to set up the Tomcat 7 connector mod_jk.so on OS X (10.8.3) so that calls to Tomcat will go through httpd from apache 2.2. The file mod_jk.so is in place. But where does workers.properties ...
0
votes
0answers
102 views

How do I install the GlassFish Load Balancer plugin on Apache 2.2.CentOS 6? Currently getting errors during installation

I have downloaded the latest version of the Load Balancer plugin, but I am unable to install it. When I step through the wizard, I select the webserver install dir as /usr/sbin (the location where ...
0
votes
0answers
23 views

IIS JK Connector and Client IP

I have setup JK_Connector on IIS 7.5 to proxy to Jboss, all working fine. For one Jboss app, I am using RemoteAddrValve in the context.xml to control access based on IP (only allow access to the ...
0
votes
1answer
36 views

Improving a Web App's Performance

My web app, an exploded WAR, is hosted by Apache (static content) and Tomcat (dynamic content) via mod_jk. Optionally, there's an ActiveMQ component of this system, but it's currently not being used. ...
0
votes
0answers
77 views

Mod_JK, Tomcat & Apache Httpd “File not found” when using Alias

I've been trying to find a solution to what I think should be a very common use of Alias with Tomcat & Apache Httpd but I can't find it. I have Tomcat running my application server and I want to ...
0
votes
0answers
38 views

ModJK: Multiple Tomcat with Same Application Name

I would like to have two instances of Tomcat, both with the same applications, running on one server. Both Tomcats should be accessible through Jkmount. Each application consists of two wars. The two ...
0
votes
0answers
7 views

Apache Modjk (Disable retires if server already recieved the request)

Setup : - Apache mod_jk as load balancer tomcat (with web apps) I have a basic requirement , that i want to disable the retires to another server in load balancer if it is handled by tomcat and ...
0
votes
1answer
169 views

Spring Security: redirect to a different host when HTTPS is required

I have a question about Spring Security HTTPS redirect strategy. First of all, the configuration: Spring 3 Java Web App tomcat after apache connected with jk Spring Security 3 Using a ...
0
votes
0answers
78 views

Get 401 when use Apache + SSL + mod_jk and Basic Auth

I'm using Atlassians Confluence. From the intern subnet it should be provided with http. For extern use (from internet) it only should work with https and do fisrt an Apache Basic Auth. I define a ...
0
votes
1answer
229 views

Problems with JBoss and ProxyPass Apache directive

My JBoss 7.1 (standalone.xml) is configured like this: <subsystem xmlns="urn:jboss:domain:web:1.1" default-virtual-server="default-host" native="false"> <connector name="http" ...
3
votes
4answers
331 views

Session mix up - apache httpd with mod_jk, tomcat, spring security - serving data of other user

Recently we have faced a serious problem, that one user was served data of another user. This problem is almost impossible to reproduce. We are using standard logged-users-management provided by ...
0
votes
1answer
85 views

apache frontend slowing the filupload

Following is my setup. I have an apache server and mod_jk module for loadbalancing 2 tomcat servers with sticky session enabled. The file upload directly to each tomcat is much faster than uploading ...
0
votes
0answers
47 views

aws autoscale mod_jk

We have an Apache with mod_jk that act as a load balancer for Jboss 5.1 app server. mod_jk doesn't support the dynamic configuration of httpd workers. Is there a way to handle dynamic scale up/down ...
0
votes
1answer
83 views

mod_jk.log shows what url?

I have mod_jk connector between Apache and Tomcat (on Ubuntu) and I'm looking at the mod_jk.log. The log mainly looks like this: [Fri Jan 18 18:37:32 2013]ajp13 <some url from my domain> ...
0
votes
1answer
41 views

SSL Certifcate for Apache/Tomcat

I followed this tutorial to create a ssl certificate for a CAS server, now I decided that I need to use a vhost using the mod_jk, so the certificate need to be set in the Apache vhost config file.. ...
1
vote
0answers
70 views

JkMount different URIs to same application name

On two servers(serverA, serverB) I have Glassfish with application A. In front of them is Apache using mod_jk. Apache responds to domain www.myDomain.com. How do I do this type of redirect: ...
0
votes
0answers
71 views

seamless failover with apache and mod_jk

I have apache fronting two tomcat servers. Both servers are active in the load balancer. If I kill one of the backend tomcat processes, all users on that node receive a HTTP 500 on their next trip ...
1
vote
1answer
62 views

Can I rewrite a URL, adding query params and preserve the form data?

I have a rule like: RewriteCond %{HTTP_HOST}:%{QUERY_STRING} ^(\w+)\.t(.*)\.(\w+)?\.sprawk\.com:(.*)$ RewriteRule ^(.*) /api/translateHtmlPublic?tl=%1&su=%2&p=$1&q=%4 [B,PT,L] which ...
0
votes
1answer
147 views

Mod_jk mounting all requests to tomcat except of two sites

I'm using mod_jk to make a java web application accessible through an apache webserver. My vhost.conf looks like this: JkMount /web/* worker1 JkMount /group/* worker1 JkMount /home/* worker1 JkMount ...
-1
votes
1answer
59 views

apache redirection for multilocale [closed]

We are multi locale site and all are using same js and css. So How can I redirect all JS,CSS files to same folder. My URL are like server.com/uk/_ui/folder/1.js server.com/uk/_ui/folder2/1.js ...
1
vote
0answers
146 views

Increase packetSize on Tomcat AJP Connector

For some reason, default packetSize (8KB) on AJP connector in server.xml does not suffice my need. My header size gets exceeded 8KB. So I need to set it to 16KB. As I am runnning apache in front of ...
0
votes
0answers
31 views

mod_jk header loading twice tomcat

WE changed the webserver from mod_proxy_ajp to mod_jk.Normal scenario site is working fine. Only problem is when my tomcat is responding slow , my site is loading header of the page twice or thrice ...
0
votes
0answers
56 views

mod_jk mapping a url to specific nodes

I use mode_jk and i have a loadbalancer and its five workers.I want to provide that some urls go just certain nodes like /webapp/a* loadbalancer's node2 and node3 and /webapp/b* loadnalancer's node1, ...
0
votes
1answer
55 views

apache mod_jk configuration for ssl tomcat6

I am trying to update my webserver from mod_proxy to mod_jk. I am able to access http pages using following configurations JkMount /* loadbalancer and my workers.properties are ...
2
votes
0answers
131 views

Apache 2.2 with mod_jk / Tomcat 6.0 / Removing context paths with 2 wars

I'm currently using a unique server to host 2 Java EE applications. The server is a Linux Debian 6, with Apache 2 and Tomcat 6. I'm using mod_jk in order to remove port from url. Until now, those ...
1
vote
1answer
407 views

mod_jk vs mod_cluster

Can someone please tell me the pro's and con's of mod_jk vs mod_cluster. We are looking to do very simple load balancing.. We are going to be using sticky sessions and just need something to route ...
1
vote
0answers
37 views

Mod_jk + Google OpenID = Error 502

We use mod_jk to redirect Appserver like httpd->mod_jk->glassfish and works pretty well. But when we want to login with Google OpenID, it shows "502 Bad gateway" error. Anyone could help? Here are my ...
3
votes
1answer
610 views

How do I build mod_jk on Mac OS X Mountain Lion?

I followed the instructions in BUILDING.txt in the native directory and executed ./configure --with-apxs=/usr/sbin/apxs Here is some of the output building connector for "apache-2.0" checking for ...
0
votes
1answer
51 views

jk_mod and apache rewrite

Is it possible to combine rewrite rules with jk_mod with server side forward? I have a simple configuration RewriteEngine On RewriteRule ^/$ /myapp [R] JkMount /* worker_1 This works great when ...
1
vote
3answers
351 views

Memory leak with apache, tomcat & mod_jk & mysql

I'm running tomcat 7 with apache 2.2 & mod_jk 1.2.26 on a debian-lenny x64 server with 2GB of RAM. I've a strange problem with my server: every several hour & sometimes (under load) every ...
0
votes
0answers
96 views

Glassfish 2.1.1 - mod_jk - glassfish-jk.properties doesnt work

I have a Glassfish 2.1.1 deployment fronted by Apache Web Server. Apache speaks to Glassfish over AJP. I want to now change the default pool size of the tomcat-ajp connector that I have deployed ...
0
votes
0answers
212 views

Apache 2.2 modjk configuration troubleshoot

Hi friends i tried to make my jboss to be worked with https. For that i followed following steps Created two nodes in jboss node1 (Http port : 8180, Ajp port : 8109) and node2 (Http port : 8280, ...
0
votes
0answers
502 views

what causes 504 Gateway Time-out in mod_jk with tomcat7 & apache2?

I'm running tomcat 7 with apache 2.2 & mod_jk 1.2.26 on a debian-lenny x64 server with 2GB of RAM, 8GB of swap & an Intel Xeon CPU X3330. I've a GWT application which uses connection pooling ...
0
votes
1answer
64 views

How to customize worker selection process through AJP13

In apache load-balancing is there a way to selecting the worker in AJP13 according to our requirement ? That means if we say currently there are server instances (jboss or tomcat) load balanced with ...
0
votes
0answers
55 views

How to test a load balanced web service?

We have set up mod_jk to load balance a webservice running on two nodes in jboss web container.What kind of tests should i come up with to know that load balancing is working properly ?
0
votes
1answer
104 views

Tomcat URL prefix

I got following URL http://SOMEURL/PREFIX/servlet/test.Home I thought that PREFIX has something to do with, the <Context path="/PREFIX"> entry. So if i wouldnt set the path it would disappear ...
1
vote
0answers
239 views

MaxClient (httpd), maxThreads (tomcat) and acceptCount (tomcat)

In my project, I do have 2 web servers (httpd) and two application servers (tomcat). Each httpd and tomcat is on separate machine. The DNS (hardware) EQUALLY loadbalance the request to two web servers ...
0
votes
0answers
45 views

mod_jk only non-root redirects

How do I set up mod_jk so that it redirects only when the request is not for the root? Any character after slash means that it must be redirected Let's say: The request is: www.blahblah.com then ...
0
votes
0answers
151 views

Tomcat JkMount and Mod Rewrite and hide folder

I want to hide the folder /rest-frontend for the users who access my web-application JkMount /rest-frontend balanced JkMount /rest-frontend/* balanced JkMount /rest-db balanced JkMount /rest-db/* ...
0
votes
1answer
274 views

httpd memory release is slow

I am using httpd with mod jk 1.2.28 on RHEL5. Behind httpd, I do have tomcat running. Connection from httpd to tomcat is made via ajp connector using modjk. I am just load testing the httpd - Using ...
0
votes
1answer
312 views

Jboss session replication : Failed to setup clustering, clustering disabled

I am trying to add clustering to my application which uses Jboss server. For replication session, I have added <distributable/> tag in web.xml. But, I get following warning and session ...
0
votes
1answer
465 views

jboss app context-root sub domain config confusion

I have an app on a subdomain, I wish to access like so: http://sub.domain.com/myApp/some.jsp I've tried various config options and I'm close, as JBoss returns 404s, but can't load as expected. JBoss ...

1 2 3 4