Questions tagged [ajp]

81 questions
0
votes
2 answers

resolving two tomcat instances to two different directories with httpd.conf and mod_proxy_ajp

Please excuse my ignorance on this topic. I've read and read, searched and searched and I'm still struggling with my setup. I'm trying to setup my httpd.conf to allow one domain, with two directories to resolve to two different tomcat…
Fred
  • 143
  • 1
  • 8
0
votes
1 answer

Two tomcat 7 instance running on same machine not accepting requests on AJP connector

I have setup a tomcat cluster with session replication running on same machine. I have modified the connector and shutdown ports as node1 --http 8080 --ajp 8009 --shutdown 8005 node2 --http 9080 --ajp 9009 --shutdown …
0
votes
1 answer

OpenSSO and Java applications with Apache AJP

I am setting up a single sign on system using OpenSSO. I have been able to install the Policy Agent 3.0 and configure the policy to require the user to log in before being able access the websites. I have 2 types of applications running. The first…
Joshua
  • 779
  • 1
  • 9
  • 19
0
votes
3 answers

SSL redirect problem with JBoss 4.2.3, Apache mod_jk and a hardware load balancer

We are currently experiencing some problems with a network setup we have not used so far and I hope to get some more input how to work around this. The network of a customer of us uses 4 JBoss instances on different servers all running the same…
0
votes
4 answers

Using Confluence with virtual hosts and mod_proxy

on a test server I have installed the latest version of Confluence. I configured a apache with ajp. But I have a problem, when I login in Confluence, I get the following error message: Not Found The requested URL / / homepage.action was not found on…
Marcus
  • 1
  • 1
0
votes
2 answers

proxy_ajp wildcards

I need to setup apache so that any site.com/ANYTHING/servlet/ANYTHING goes over ajp into tomcat, but regular files will go through apache still. I have been messing around with this to no avail Order Allow,Deny Allow…
The Digital Ninja
  • 764
  • 4
  • 10
  • 25
0
votes
2 answers

AJP Checksum Error

I am looking into a TCP capture with Wireshark and I am seeing numerous AJP errors that look similar to below coming from our Apache server. I'm wondering what is causing these errors and what I can do to resolve them? AJP13 Error?[Unreassembled …
Taylor Leese
  • 179
  • 3
  • 10
0
votes
1 answer

redirection problem with mod ajp

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 http ://myapp.com/myapp/mypage, and i get a 404 error i…
user55517
0
votes
3 answers

Apache forwarding everything to Tomcat except webmail

Just asked on StackOverflow, but more appropriate here. 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…
Joe
  • 103
  • 1
0
votes
1 answer

tomcat 5.5 + apache Configure a group app inside tomcat

My apache redirects to my tomcat ... ProxyPass http://localhost:8080/ ProxyPassReverse http://localhost:8080/ ... But my tomcat has more webapps, and I would have another apache http…
Moli
  • 1
  • 1
0
votes
2 answers

tomcat behind 2 apache http servers

I have this architecture: http Ajp [Apache A] -------> [Apache B] ----------> [Tomcat] there is a way to configure [Apache B] to forward an ajp request in order to achive this: Ajp …
user40747
  • 23
  • 2
0
votes
0 answers

ClosedChannelException due to apache AJP

I am getting errors in prod splunk(not able to reproduce error in lower regions) which my senior believe is due to Apache AJP. Below are the errors - [31m10:53:39,465 ERROR [io.undertow.request] (default task-316) UT005023: Exception handling…
ereh
  • 1
0
votes
1 answer

Tomcat connector for Internet Information Server not working

I am trying to configure a Internet Information Server to work with Tomcat and after following the steps in the website it's does not work. What is worst, no way to document or to realize where the problem is. As appear in the website there are many…
Raul Luna
  • 103
  • 3
0
votes
1 answer

How can I test an ajp worker (tomcat10, apache 2.4.6)?

I have a simple server setup: Apache 2.4.6 JK Worker for talking with Tomcat, where a REST service is living Tomcat 10 Virtual Host In my virtual host file I have this configuration (snippet in ):
BairDev
  • 125
  • 1
  • 1
  • 8
0
votes
2 answers

Can not access Tomcat servlet using httpd ajp proxy in Docker

Docker, httpd and tomcat is new to me. What I want to do: Access tomcat servlet through httpd ajp reverse proxy. I am making two containers under same bridge network, one runs httpd, another tomcat. Problem: I can not access tomcat through httpd.…