[ANN] Apache Tomcat 8.0.8 (beta) available

2014-05-22 Thread Mark Thomas
The Apache Tomcat team announces the immediate availability of Apache Tomcat 8.0.8 (beta). Apache Tomcat 8 is an open source software implementation of the Java Servlet, JavaServer Pages, Java Unified Expression Language and Java WebSocket technologies. Apache Tomcat 8 is aligned with Java EE 7.

Re: Tomcat 7 cannot get ciphers with SHA256 or SHA384

2014-05-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Sverre, On 5/21/14, 6:21 AM, Sverre Moe wrote: I have tried running Tomcat with Java 7 and Java 8. Both of these should support CBC_SHA256 and CBC_SHA384, but only Java 8 supports GCM_SHA384. I have downloaded the Java cryptographic extensions

Re: AJP protocol with Apache Tomcat Version 7.0.52

2014-05-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Ravi, On 5/21/14, 2:28 AM, ravishankar_d wrote: Hi Dan, We are using apache web server provided along with RHEL.So I believe we are getting back port fixes. In the threaddump we are seeing the below long running threads many times.As

Re: AJP protocol with Apache Tomcat Version 7.0.52

2014-05-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Pradeep, On 5/21/14, 5:15 PM, Pradeep Kumar G M wrote: We are using mod_jk AJP connections will always be waiting for data when they are not actively processing a request. You should expect to see all your idle threads sitting in this state.

Re: How to monitor performance of tomcat

2014-05-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Randir, On 5/21/14, 8:32 AM, Randhir Singh wrote: There is a correction as JAVA_OPTS variable is defined in catalina.sh under $CATALINA_HOME/bin and we use $CATALINA_HOME/bin/startup.sh to start tomcat. $CATALINA_HOME/bin/startup.sh has the

Re: Tomcat 7 cannot get ciphers with SHA256 or SHA384

2014-05-22 Thread Igor Cicimov
On 21/05/2014 8:22 PM, Sverre Moe sverre@gmail.com wrote: I installed Tomcat-7 7.0.42 in OpenSUSE 13.1, configured support for TLSv1.2. I then configured a list of strong ciphers only, that I wanted to use. Connector port=8443 protocol=org.apache.coyote.http11.Http11NioProtocol

Re: AJP protocol with Apache Tomcat Version 7.0.52

2014-05-22 Thread pradeepgm
Yes, we have 300 such threads waiting and after some period of time the server is hung and not responding. We are using AJP BIO with below parameters maxThreads=250 maxConnection=245 -- View this message in context:

Re: AJP protocol with Apache Tomcat Version 7.0.52

2014-05-22 Thread pradeepgm
Now we have configured three tomcat instances with below configurations to test the above issue 1. AJP BIO with JkOptions +DisableReuse, connectionTimeout=2, maxThreads=250, maxConnection=245 2. AJP NIO with maxThreads=250, maxConnection=245, connectionTimeout=2 and bufferSize=4096 3.