Re: Tomcat fail to start : Socket bind failed: [22] Invalid argument

2009-09-16 Thread Thomas Manson
] Subject: Re: Tomcat fail to start : Socket bind failed: [22] Invalid argument If I comment the listener, compile tomcat-native-1.1.16-src, it will still use APR but this time it will work with ipv6 ? No; if you comment out the listener, Tomcat will not use APR. Try deleting

Re: Tomcat fail to start : Socket bind failed: [22] Invalid argument

2009-09-15 Thread Thomas Manson
Hi Mark, thanks for the answer. Just for clarification, the ipv6 bug is still in the 6.0.20 version? How do I disable APR ? I thought that APR == tc native... Am I wrong ? Regards, Thomas. On Fri, Sep 11, 2009 at 11:08, Mark Thomas ma...@apache.org wrote: ith tc native 1.1.1

Re: Tomcat fail to start : Socket bind failed: [22] Invalid argument

2009-09-15 Thread Mark Thomas
Thomas Manson wrote: Hi Mark, thanks for the answer. Just for clarification, the ipv6 bug is still in the 6.0.20 version? No. It was fixed for Tomcat 6.0.20 and tc native 1.1.16 onwards How do I disable APR ? Comment out / delete the listener in server.xml I thought that APR ==

Re: Tomcat fail to start : Socket bind failed: [22] Invalid argument

2009-09-15 Thread Thomas Manson
Still not clear for me. If I comment the listener, compile tomcat-native-1.1.16-src, it will still use APR but this time it will work with ipv6 ? or it is still not working with ipv6, that's why I need to disable ipv6 ? Because, I've checked in my server.xml I already tried to disable apr :

RE: Tomcat fail to start : Socket bind failed: [22] Invalid argument

2009-09-15 Thread Caldarale, Charles R
From: Thomas Manson [mailto:dev.mansontho...@gmail.com] Subject: Re: Tomcat fail to start : Socket bind failed: [22] Invalid argument If I comment the listener, compile tomcat-native-1.1.16-src, it will still use APR but this time it will work with ipv6 ? No; if you comment out

Re: Tomcat fail to start : Socket bind failed: [22] Invalid argument

2009-09-11 Thread Mark Thomas
Thomas Manson wrote: any ideas? You are still using APR (references to org.apache.coyote.http11.Http11AprProtocol in the logs) and hitting the ipv6 bug. You need to do one of the following: - disable APR - disable ipv6 - use 6.0.20 with tc native 1.1.16 Mark