Tagged Questions
The ajp tag has no wiki summary.
5
votes
1answer
624 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 ...
4
votes
2answers
578 views
Is there an implementation of AJP protocole in Java?
From Apache, you can use the "mod_jk" module to send http requests to Tomcat using the "AJP" protocole, which is far more efficient that http itself.
I want to do the same, but from a Java program. I ...
3
votes
1answer
524 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
4k views
Apache with JBOSS using AJP (mod_jk) giving spikes in thread count
We used Apache with JBOSS for hosting our Application, but we found some issues related to thread handling of mod_jk.
Our website comes under low traffic websites and has maximum 200-300 concurrent ...
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
943 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
269 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
2answers
982 views
Identify cause of hundreds of AJP threads in Tomcat
We have two Tomcat 6.0.20 servers fronted by Apache, with communication between the two using AJP. Tomcat in turn consumes web services on a JBoss cluster.
This morning, one of the Tomcat machines ...
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
24 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
28 views
Jboss Pausing AJP port
I'm trying to connect Apache WS to JBoss via AJP protocol. The problem is that JBoss pauses the binding for the ajp port.
Here's the log:
[JBoss Shutdown Hook] : AjpProtocol - Pausing Coyote AJP/1.3 ...
1
vote
1answer
176 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
195 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
683 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
460 views
Should Tomcat 6 AJP keep its threads in keepalive state with mod_jk?
I've recently switched my Tomcat server to use AJP fronted by Apache. In the manager I'm seeing:
Stage Time B Sent B Recv Client VHost Request
K 15395557 ms ? ? 67.195.114.27 ? ?
...
1
vote
0answers
451 views
Rewrite authenticated Apache2.2 user for mod_proxy_ajp
I have a Tomcat connected via mod_proxy_ajp to an Apache2.2 instance. Apache does the authentication via mod_auth_kerb, and Tomcat uses request.getRemoteUser() to get the authenticated user.
This ...
1
vote
4answers
183 views
python web app in prod
I am considering to use python serving json based web services, my priorities are, in order:
maintainability
easy of coding
high availability
performance
Apache->AJP->Flup->Python seems ok to me, ...
1
vote
1answer
430 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
2answers
437 views
Is AJP secure enough?
We need to host a java richfaces/hibernate app in our hosting service. As a requirement of our security department we cannot make any connection from that application to our internal databases. One ...
1
vote
3answers
2k views
What is the cause and how to fix 503 errors with this in Apache error_log: “Broken pipe: ajp_ilink_send(): send failed”
I'm having intermittent problems with a servlet running on JBoss, with Apache forwarding it all requests via mod_proxy_ajp.so.
Sometimes, for REST requests, I get 503 errors from Apache. When this ...
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 ...
1
vote
3answers
3k views
Using ProxyPass for pages but not images
As a result of horrible, horrible errors, we've changed how we connect Apache to Tomcat. We were using mod_jk:
JkMount /path ajp13
Now we're using mod_proxy_ajp:
ProxyPass /path ...
1
vote
2answers
1k views
Startup Deployment Architecture- Running Glassfish V3 Prelude without Apache
So am I crazy for considering doing a beta/production release on Glassfish V3 Prelude?
Since all of my content is dynamic, I'm not even thinking of bothering to set up apache in front either. Doing ...
0
votes
0answers
30 views
Apache proxy balancer-manager not working
I have setup apache tomcat load balancing with mod_jk and mod_ajp_proxy on ubuntu LTS server. I am trying to manage nodes like activating/de-activating nodes during deployment with balancer-manager of ...
0
votes
1answer
12 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
194 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
58 views
Using AJP to perform requests from Python to Java webserver
I have to implement a Python web application which operates on data available through web-services (API with GET requests and JSON responses).
The API server is implemented in Java. Preliminarily ...
0
votes
0answers
104 views
Apache Loadbalancing with Tomcat backend AJP1_3 serving Webservers
I am trying to configure a loadbalancer of Apache 2.2 on RHL (Linux) to be in the front of two Tomcat webservers serving AJP (Apache JServe Protocol)1.3.
The goal is for users to be persistently ...
0
votes
1answer
566 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
36 views
JS Errors because of proxy_ajp
We have an application running on tomcat6 with apache 2.2.16 and we have proxy_ajp enabled on port 80 that routes via ajp module. We also have an HTTP connector on port 9090.
Accessing the ...
0
votes
0answers
246 views
Tomcat6/Apache2.2/mod_jk: Detecting browser connection reset to clean up database connections
How do I detect that the browser has dropped the HTTP connection so that my Java servlet can safely close the JDBC connections?
I have Apache2.2 on the front end communicating with tomcat6 via the ...
0
votes
0answers
118 views
ajp thread are not getting released and keepalive time is raising via Juniper SRC
We are using ajp ver 1.2.28 on our application server, currently with new Juniper SRX FW we have thread keep raising on the system without be able to free them, on a normal basis we get thread ...
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
2answers
81 views
Help with mod-rewrite to display a new url
hi all
i have my app configured with mod ajp to be as follows:
http://www.myapp.com/myapp
so when i request a page like mypage, the url will be
http://www.myapp.com/myapp/mypage
and i want when ...
0
votes
2answers
231 views
we have ? in a url and ajp converts it to %3F
with the Mod_jk connector we have this in our /etc/apache2/sites-available file:
RewriteRule \/$ /op_ugw/orderportal/home?switchprofile=RecyledPlants [L]
This works fine. and www.recycledplants.com ...
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
1answer
829 views
How does JBoss choose which AJP port to use?
In JBoss 5.1.0, there is a file called <INSTANCE>/conf/bindingservice.beans/META-INF/bindings-jboss-beans.xml which includes some settings for applying an offset to the port numbers. This is ...
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
1answer
420 views
How do I convince mod_proxy_ajp to pass environment variables to its backend?
I'm trying to use Apache's mod_proxy with the AJP backend and an ajp-wsgi app server but it doesn't seem to be sending SetEnv variables to the application server.
Configuration snippet:
<Location ...
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
2answers
1k views
Apache Webserver & JBoss AJP connectivity with https
We are hosting a JEE Application running on JBoss. For security reasons this application that should be available on the internet is protected with a front-end Apache server. We are using AJP to ...
0
votes
5answers
843 views
Configuring Apache Web Server with Tomcat
I am trying to configure Apache webserver with Tomcat using AJP, but I am not sure am I doing it right or not.
Here are the steps that I followed:
Enabled requiredModule in httpd.conf file
...
0
votes
1answer
308 views
WebSphere Portal v.5.1 and AJP?
is there a way to configure WebSphere Portal to accept AJP connections?
E.g. Tomcat/JBoss and Oracle have a specific AJP port. I can't find it in WebSphere, and I'm getting tired of Googlin' around ...
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 />
...