Consulting opportunity

2014-10-10 Thread carl
We have what we believe is approximately a one week assignment to cluster several instances of Tomcat. The clustering should be relatively straight forward except that most of the classes on the server side extend a class which contains the datasource and is therefore not serializable. Alth

Tomcat 6 SSL issue

2014-10-10 Thread Baran Topal
Hi; I have created a keystore and CSR for SSL with the following command: %JAVA_HOME%\bin\keytool -genkey -alias server -keyalg RSA \ -keystore \path\to\my\keystore Then I received 2 files from the certificate authority, abc.com.cer and abc.om.p7b >From this point, no matter what I have don

Re: Quite a few TCP connection established on start of Tomcat

2014-10-10 Thread Pankaj Singh
There are settings to handle sessions and the connections pertains the same. Pankaj On Fri, Oct 10, 2014 at 11:39 PM, Gangadhar Tumkur wrote: > Thanks for taking time to reply to my question. I have a follow-up > question. What do you mean by "This is only done as you have configured on > the

Re: Quite a few TCP connection established on start of Tomcat

2014-10-10 Thread Gangadhar Tumkur
Thanks for taking time to reply to my question. I have a follow-up question. What do you mean by "This is only done as you have configured on the settings."? Is there a setting by which we allow Tomcat to use port's? Raj On Fri, Oct 10, 2014 at 1:13 PM, Pankaj Singh wrote: > These are locally e

Re: Quite a few TCP connection established on start of Tomcat

2014-10-10 Thread Gangadhar Tumkur
Hello Chuck, There were 10, I did NOT copy all of them. Thanks, Raj On Fri, Oct 10, 2014 at 1:16 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Gangadhar Tumkur [mailto:rajmc...@gmail.com] > > Subject: Re: Quite a few TCP connection established on start of Tomcat > > >

RE: Quite a few TCP connection established on start of Tomcat

2014-10-10 Thread Caldarale, Charles R
> From: Gangadhar Tumkur [mailto:rajmc...@gmail.com] > Subject: Re: Quite a few TCP connection established on start of Tomcat > The text of the image: > TCP127.0.0.1:57945ACNU34794GD:57946 ESTABLISHED > [java.exe] > TCP127.0.0.1:57946ACNU34794GD:57945 ESTABLISH

Re: Quite a few TCP connection established on start of Tomcat

2014-10-10 Thread Pankaj Singh
These are locally established connections, pertains to the local socket connectivity of tomcat thread with different ports/sockets randomly. This is only done as you have configured on the settings. Thanks Pankaj Singh On Fri, Oct 10, 2014 at 10:39 PM, Gangadhar Tumkur wrote: > The text of th

Re: Quite a few TCP connection established on start of Tomcat

2014-10-10 Thread Gangadhar Tumkur
The text of the image: TCP127.0.0.1:57945ACNU34794GD:57946 ESTABLISHED [java.exe] TCP127.0.0.1:57946ACNU34794GD:57945 ESTABLISHED [java.exe] On Fri, Oct 10, 2014 at 12:39 PM, Daniel Mikusa wrote: > On Fri, Oct 10, 2014 at 12:33 PM, Gangadhar Tumkur > wrote

Re: Quite a few TCP connection established on start of Tomcat

2014-10-10 Thread Daniel Mikusa
On Fri, Oct 10, 2014 at 12:33 PM, Gangadhar Tumkur wrote: > Hello, > > We have moved to Tomcat 7.0.51 from JBoss 4x as the application server for > our product using Java 8.0.20. After starting Tomcat application server and > when we run netstat -a -b we see that there are quite a few TCP connect

Quite a few TCP connection established on start of Tomcat

2014-10-10 Thread Gangadhar Tumkur
Hello, We have moved to Tomcat 7.0.51 from JBoss 4x as the application server for our product using Java 8.0.20. After starting Tomcat application server and when we run netstat -a -b we see that there are quite a few TCP connections established related to Tomcat as you see below. [image: Inline

Re: Tomcat JVM Crash

2014-10-10 Thread Chad Maniccia
Hi, So I have found a long term solution to our crash problem. We were using JSSE for SSL, switching to APR and OpenSSL fixed the problems. So my findings are this JSSE has a bug in it that can cause the Tomcat server to crash brought on by SSL, Chrome and a form post of a specific amount

Re: Tomcat JDBC pool - auto reconnect

2014-10-10 Thread Daniel Mikusa
On Fri, Oct 10, 2014 at 9:51 AM, Vasily Kukhta wrote: > Hi friends, > > I have a question regarding the ability of Tomcat JDBC pool to reconnect > automatically to a database in case of temporarily network failures. > > I'm developing a high-load application which uses Oracle 11g database. It > m

Tomcat JDBC pool - auto reconnect

2014-10-10 Thread Vasily Kukhta
Hi friends, I have a question regarding the ability of Tomcat JDBC pool to reconnect automatically to a database in case of temporarily network failures. I'm developing a high-load application which uses Oracle 11g database. It may happen that the DB can become unavailable for several minutes - i

Re: Where do System.out and System.err go in Tomcat?

2014-10-10 Thread Ameer Mawia
sorry for typos. In catalina.sh in *nix environment and catalina.bat in windows environment. Regards, Ameer Mawia On Oct 10, 2014 3:35 PM, "Ameer Mawia" wrote: > Hi, > > Tomcat by default dump both console output and error in catalina.out under > tomcat-home/log directory. But you can change it

Re: Where do System.out and System.err go in Tomcat?

2014-10-10 Thread Ameer Mawia
Btw if you want the console logs from your application to go in your application log file, then in that case you have to add a console appender to your log4j configuation file(assuming you are infact using log4j). On Oct 10, 2014 3:37 PM, "Ameer Mawia" wrote: > sorry for typos. > > In catalina.sh

Re: Where do System.out and System.err go in Tomcat?

2014-10-10 Thread Ameer Mawia
Hi, Tomcat by default dump both console output and error in catalina.out under tomcat-home/log directory. But you can change it any day by modifying startup script catalina.sh/catalina.bat in *nix environment or catalina.bat in bin directory of tomcat home. Regards, Ameer Mawia On Oct 10, 2014 2:

Where do System.out and System.err go in Tomcat?

2014-10-10 Thread M. D.
Hello devs, I saw this post on the Internet: http://www.jguru.com/faq/view.jsp?EID=302980 > Where do System.out and System.err go in Tomcat? > By default, they will go to the console where the tomcat is started. You have > to modify the startup > scripts to redirect them to appropriate files.