Try adding address="127.0.0.1" to the ajp13 tag in server.xml,
and configuring apache to connect to 127.0.0.1 if you haven't already.
This should stop the ajp13 port from being visable to other machines.
As far as iptables goes, you probably want -o lo -j ACCEPT at the top of the
ruleset, and I
try as root:
rpm -e `rpm -q -f /usr/bin/javac`
Or something like that.
Basically uninstall which ever pitiful excuse for java is installed on your
system by default leaving only the sun jdk.
Probably a good idea to check that nothing needs it before you do it.
On that note, why do certain linu
I thought you said tomcat ran on 3 different boxes and it was a cluster ?
java.io.IOException: Connection reset by peer
This means that the tcp connection was severed somehow, this is typically
caused by a firewall dropping idle TCP connections, or someone unplugging a
network cable, or someone r
ady exist.
> Google is your friend there.
>
> Bruno Georges
>
> Glencore International AG
> Tel. +41 41 709 3204
> Fax +41 41 709 3000
>
>
> - Original Message -
> From: Antony Riley [EMAIL PROTECTED]
> Sent: 10.02.2006 14:32
> To: users@tomcat.apac
You could use a javax.servlet.Filter apparently, and say redirect requests
to a particular servername to /jsp_a and redirect the rest to /jsp_b.
basically installing a filter which does the following:
public void doFilter(request,response,chain) {
if(request.getServerName.equals("server1")
cessed jsp pages, and fail to do directory indexes, even though without
the filter mapping it works correctly.
-Antony Riley