Add in the follow 
iptables -A INPUT -j LOG
iptables -A OUTPUT -j LOG

Then do 

dmesg -c 2&> /dev/null; 
Now do a shutdown then
dmesg | grep 127.0.0.1
or just 
dmesg 

if you are running a cluster

What ever comes out is what you are blocking on the local machine I
would suggest you do

iptables -I INPUT 1 -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT
iptables -I OUTPUT 1 -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT

This will allow all internal traffic 

On Fri, 2005-12-16 at 19:05 +0100, Sebastian Funk wrote:
> Hi,
> 
> On Dec 16, 2005, at 6:18 PM, Martin Gainty wrote:
> 
> > Sebastian-
> > send us the logs specifically stdout_YYYYMMDD.log
> > Martin-
> Sorry, but I've got nothing named "stdout*.log". Where should that be?
> 
> > ----- Original Message ----- From: "Sebastian Funk"  
> > <[EMAIL PROTECTED]>
> > To: "Tomcat Users List" <users@tomcat.apache.org>
> > Sent: Friday, December 16, 2005 11:52 AM
> > Subject: Re: Tomcat and iptables?
> >
> >
> >> Hi,
> >> Thanks to all, now I entered the ports 8082, 8009, 8443 and 8005  
> >> (for  shutdown) and now Tomcat works, but I can't shutdown. There  
> >> comes as  usual:
> >> Using CATALINA_BASE:   /home/tomcat/tomcat
> >> Using CATALINA_HOME:   /home/tomcat/tomcat
> >> Using CATALINA_TMPDIR: /home/tomcat/tomcat/temp
> >> Using JRE_HOME:       /usr/lib/jdk
> >> but then nothing happens, and I get no prompt back. Did I miss a  
> >> port?
> >> Best Regards,
> >> Sebastian Funk
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: [EMAIL PROTECTED]
> >> For additional commands, e-mail: [EMAIL PROTECTED]
> >>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to