Tagged Questions

5
votes
1answer
642 views

How can I monitor/log Tomcat's thread pool?

I have a Tomcat installation where I suspect the thread pool may be decreasing over time due to threads not being properly released. I get an error in catalina.out when maxthreads is reached, but I ...
4
votes
10answers
3k views

Apache/Tomcat error - wrong pages being delivered

This error has been driving me nuts. We have a server running Apache and Tomcat, serving multiple different sites. Normally the server runs fine, but sometimes an error happens where people are ...
3
votes
1answer
528 views

Spring Security and AJP proxy

I use Spring Security and Apache proxy for a web app. When using standard mod_proxy everything is OK, but after switching to AJP proxy there appears a problem with Spring security redirects. Apache ...
3
votes
4answers
2k views

Speed up images in Tomcat 6

In tomcat 6 i have a servlet running openbluedragon, everything compiles and servers up quik, with the exception of images, they really lag significantly. Any suggestions optimization for image ...
2
votes
5answers
954 views

mod_proxy_ajp error: renders html as text/plain, prompts user to “save as…”

We have an odd, intermittent error that occurs with mod_proxy_ajp, i.e. using apache as a front end to a tomcat server. The error User clicks on a link browser prompts user to "save as...." (e.g. ...
2
votes
2answers
270 views

Stuck with apache,mod-ajp weird redirection

hi all i have a redirection problem with mod ajp, that it always adds the application name before the desired page, for example: if i requested the page: http://myapp.com/mypage it is converted to ...
2
votes
1answer
4k views

apache proxy to tomcat keep alive confusion

I have an apache 2.2 server infront of a tomcat 6 server. using mod_proxy_ajp on apache to proxy requests to tomcat. pretty standard setup. If I need to disable keep-alive connections for browsers, ...
2
votes
2answers
4k views

ProxyPass, ProxyReverse vs AJP

I currently have a Tomcat + Apache HTTP server setting to serve my Java servlet: ProxyPass /myservice http://localhost:8080/myservice ProxyPassRerverse /myservice http://localhost:8080/myservice ...
2
votes
2answers
6k views

Apache + Tomcat: Using mod_proxy instead of AJP

Is there any way I connect Apache to Tomcat using an HTTP proxy such that Tomcat gets the correct incoming host name rather than localhost? I'm using this directive in apache: ProxyPass /path ...
1
vote
1answer
26 views

How can I protect a Tomcat webapp that's reverse proxied in an Apache2 virtual host using basic authentication?

I'm having trouble figuring out how to adding basic HTTP authentication to password-protect a development testing environment running on a production web server. Both the main site and the testing ...
1
vote
1answer
182 views

secondary ajp worker not working between apache and tomcat

I've had this working for months but I had a power cycle today and something broke. Sorry, this is a bit detailed and specific, but I'm desperate for help. I have apache-2.2 and two tomcat-6 servers ...
1
vote
0answers
197 views

tomcat ajp connector with multiple webapps

I have a tomcat server, with a webapps/ROOT application, fronted by Apache. LoadModule proxy_ajp_module modules/mod_proxy_ajp.so and ProxyPass / ajp://localhost:8009/ ProxyPassReverse / ...
1
vote
1answer
691 views

AJP 1.3 Connector listens on port 8009 globally, why and how to turn it off?

I set up a Tomcat 6 with an Apache 2 and mod_proxy. Now I have this default value in my server.xml: <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" /> netstat looks like this: ...
1
vote
1answer
431 views

Avoid 302 Redirects through Apache

Hello I have a confluence installation running on tomcat. In front of tomcat I have an apache server. When I go to my page a 302 to /homepage.action is done and afterwards a redirect to the start ...
1
vote
5answers
1k views

Apache is incorrectly converting jsp pages to “text/plain”

I've got a fairly normal setup in which Apache proxies requests to a servlet running inside Tomcat over the AJP protocol. We've run this setup on Apache 2.0.46/Tomcat 5.0.28 for ages without ...
0
votes
1answer
13 views

Will request.getDispatcher(“/newurl”).forward() work when using apache connected to tomcat via ajp?

I was trying to change the behaviour of a 3rd party app I'm working with by writing a servlet filter to forward a request to a particular URL based on certain conditions. I initially tried with ...
0
votes
1answer
32 views

iPlanet/Tomcat AJP connections hang

Our current production web environment uses: Web Server: Netscape iPlanet v4.1 (don't laugh!) Servlet Container: Tomcat 6.0.32 Both running SunOS 5.9 (Solaris 9?) on separate servers. We have ...
0
votes
0answers
195 views

How to avoid the Httpd > Squid > Tomcat 502 Bad Gateway Error

I have a configuration mess that's got me befuddled. It's most likely due to my lack of experience with Squid but I'm not sure. I have a pretty vanilla HTTPD front-end that has, to this point, used ...
0
votes
1answer
568 views

Setting Max HTTP Header Size With AJP / Tomcat 6.0

If you're not using AJP, Tomcat 6.0 Connectors have a nice maxHttpHeaderSize attribute in server.xml. But if you are using AJP, that attribute is not understood. Is there any way to increase the ...
0
votes
0answers
130 views

Getting a white page when attempting to load balance Tomcat 5.5

I am making my first attempt at load balancing a tomcat 5.5 (Win 2K3, IIS6) server and hit a wall. Problem Looking at the stdout log it looks like it is running correctly but my webapp is only ...
0
votes
0answers
61 views

How to modify authenticated apache user

Is there a way to modify the request_rec->user variable in Apache2? I tried mod_map_user but it isn't powerful enough for me, I need to be able to use request headers or environment variables. ...
0
votes
1answer
197 views

Apache forward everything to Tomcat except webmail

I have my Apache HTTP server set up to forward all requests to Tomcat, i.e. proxy_ajp.conf looks like: ProxyPass / ajp://localhost:8009/ where Tomcat is listening on port 8009. This works find ...
0
votes
2answers
1k views

Subdomain under Apache to proxy into Tomcat

I'm having trouble with making a subdomain to my Windows computer while using AJP to proxy to Tomcat. This is what I have in my httpd.conf file: <VirtualHost *:80> ServerName ...
0
votes
2answers
949 views

AJP proxy that maps internal servlet name to a different external name

Using apache2 I want to set up an AJP proxy for a Tomcat server that maps an internal servlet URL to a completely different URL externally. Currently I am using the following configurations: Apache2 ...
0
votes
2answers
2k views

How to set the AJP packet size in Tomcat?

I've followed the instructions here for setting the maxPacketSize in AJP... AJP connector doc It states in the doc that I need to "you must also change the packetSize attribute of your AJP connector ...
0
votes
3answers
1k views

How do I connect my tomcat app to apache 2 so the paths aren't lame?

I've got a tomcat instance with several apps running on it... I want the root of my new domain to go to one of these apps (context path of blah).. so I have the following set up: <Location /> ...