Re: very high CPU and load...

2009-09-09 Thread André Warnier
keeplearning wrote: I am running a load test with 2 web (apache) and 2 appservers (tomcat). I am noticing that after 250 users, I start seeing very high CPU usage and very high load. Below is the o/p from top command. I also saw this message in catalina.out: SEVERE: All threads (250) are

Does CVE-2007-0450 (Directory Traversal) affect standalone Tomcat

2009-09-09 Thread Tadelkar, Gauravsagar (Gaurav)
I have a tomcat at version 5.5.15 in a standalone mode and due to some compulsions cannot upgrade it. Does the directory traversal vulnerability affect tomcat in a standalone mode (the 5.5.15 ver does not have a fix to this vulnerability)? Alternately, is there a way I can secure/work around this

Re: Typo on http://tomcat.apache.org/tomcat-6.0-doc/virtual-hosting-howto.html ?

2009-09-09 Thread Mark Thomas
Markus Fischer wrote: Hi think there's a typo at http://tomcat.apache.org/tomcat-6.0-doc/virtual-hosting-howto.html . If you search for ROOR you will find: Note that the default or ROOT context for ren would be deployed as $CATALINA_HOME/renapps/ROOT.war (WAR) or

Re: Does CVE-2007-0450 (Directory Traversal) affect standalone Tomcat

2009-09-09 Thread Mark Thomas
Tadelkar, Gauravsagar (Gaurav) wrote: I have a tomcat at version 5.5.15 in a standalone mode and due to some compulsions cannot upgrade it. Does the directory traversal vulnerability affect tomcat in a standalone mode (the 5.5.15 ver does not have a fix to this vulnerability)? No it doesn't.

Survey Results: Tomcat users spend ~145 hours redeploying annually, considered one of fastest containers

2009-09-09 Thread David Booth
Info for Tomcat users: Compared to other containers out there, the Tomcat web container is one of the fastest when it comes to startup and redeploy times. In a survey conducted over the summer ( http://www.zeroturnaround.com/blog/java-ee-container-heaven-hell-survey-results/), Tomcat users

Re: very high CPU and load...

2009-09-09 Thread Tim Funk
you have a config issue. I bet you have 250 apache workers (per server) and 250 tomcat workers(per server). But there are 500 apache workers (250 * 2). So in the worst case - you need tomcat to handle 500 connections. -Tim keeplearning wrote: I am running a load test with 2 web (apache)

Re: Need Help - Mod_jk/Apache - Mutiple Content issue

2009-09-09 Thread Rainer Jung
Hi, On 09.09.2009 06:56, balakarthik.baska...@wipro.com wrote: Hi, In our production envt,we are making use of a configuration of Apache(2.2.10-1)+Mod_jk(1.2.27)+JBOSS(4.0.5)+ATG 2007.1. We are facing a problem where multiple content is being displayed to the customer.It was observed that

Re: apache modjk issue

2009-09-09 Thread sandeepkumarnimma
sandeepkumarnimma wrote: On 08.09.2009 17:48, sandeepkumarnimma wrote: If status 500 is logged in your webapp log file, then you have to discuss it with your webapp developers. Your configuration is to basic for production use. Read about timeouts on

Re: how to unwrap a Request from RequestFacade

2009-09-09 Thread Muthu . Chandir
So are you saying that I can't get what I want using TC 5.5? Is upgrading to TC 6 is the only option? Thanks -- Muthu From: Bill Barker billwbar...@verizon.net To: users@tomcat.apache.org Date: 09/04/2009 11:44 PM Subject: Re: how to unwrap a Request

re: catalina error file

2009-09-09 Thread mateo-jl
Hello, sorry for the circular file expression ; it meant log rotation Thank you Martin, Chuck for your answers. jlm Message du 08/09/09 15:04 De : mateo-jl A : Tomcat List Copie à : Objet : catalina error file Hello, i would like to have a circular catalina error file is it

Re: very high CPU and load...

2009-09-09 Thread keeplearning
Where do I see # of apache workers and tomcat workers in the config file? With what you said, shouldn't 2 tomcat servers handle 500 connections (250 *2)? Thanks a lot Prakash funkman wrote: you have a config issue. I bet you have 250 apache workers (per server) and 250 tomcat

Re: very high CPU and load...

2009-09-09 Thread Peter Crowther
2009/9/9 keeplearning p_sodh...@yahoo.com With what you said, shouldn't 2 tomcat servers handle 500 connections (250 *2)? Your two httpds may not load-balance perfectly - so it's quite possible that both will direct traffic to the same Tomcat server. So, that one Tomcat server may have to

Re: very high CPU and load...

2009-09-09 Thread Tim Funk
At this point, no one on the list will have a clue since we don't know 1) apache version 2) tomcat version 3) type of connector used, mod_proxy_ajp, mod_jk, or mod_proxy_http But if tomcat is saying All threads (250) are currently busy, waiting. - that means it is only configured to handle 250

Re: How to install an updated third party SSL certificate for B2B transactions

2009-09-09 Thread David Uctaa
I believe all I need to do is import the new certificate into the keystore. The certificate from our trading partner appears to be getting used for verifying data which has been signed by them and sent to us. So I execute the following statement to try to import the new certificate: keytool

Re: How to install an updated third party SSL certificate for B2B transactions

2009-09-09 Thread Serge Fonville
Hi, keytool error: java.lang.Exception: Public keys in reply and keystore don't match http://lmgtfy.com/?q=Public+keys+in+reply+and+keystore+don%27t+matchl=1 Start with that, read the thread and maybe it helps HTH Regards, Serge Fonville On Wed, Sep 9, 2009 at 5:07 PM, David Uctaa

Database Connection Pooling initialization with dbcp

2009-09-09 Thread Chris Wiley
Hello, I have a web app I have developed under Tomcat 6.0.18 and have added in the dbcp system. As it stands now, It wants to make connections only after the first request to the app. I want the dbcp system to initialize x number of connections on app/server startup. I know if I want to

Re: How to install an updated third party SSL certificate for B2B transactions

2009-09-09 Thread David Uctaa
Gee thanks, I didn't think to Google answers first, that suggestion was very helpful. I actually did Google it and read the threads that came up under such searches. There were very few threads, and most of them were completely unanswered. Those that were answered did not pertain to my

Re: Database Connection Pooling initialization with dbcp

2009-09-09 Thread Ziggy
Im not an expert on this but i thought that the pool will cache connections that you have created. Maybe someone can clarify this. Have a look at this http://onjava.com/pub/a/onjava/2006/04/19/database-connection-pooling-with-tomcat.html?page=2 On Wed, Sep 9, 2009 at 9:01 AM, Chris Wiley

Re: How to install an updated third party SSL certificate for B2B transactions

2009-09-09 Thread Ziggy
On 9/8/09, Peter Crowther peter.crowt...@melandra.com wrote: 2009/9/8 David Uctaa duc...@gmail.com I have inherited a Tomcat 5.5 installation running on Windows XP. There are processes on this box which do server-to-server connections with a third party via HTTPS over SSL. We have

tomcat-users.xml and manager role

2009-09-09 Thread Bruce Nourish
Hi, I have a 6.0.20 Tomcat binary distribution downloaded and untarred directly from the Tomcat site. My system is Ubuntu 8.04 with Java version 1.5.0_16. When I configure the manager role precisely as directed in the 401 Error message: role rolename=manager/ user username=tomcat password=s3cret

Re: tomcat-users.xml and manager role

2009-09-09 Thread Tim Funk
This worked fine for me conf/tomcat-users.xml - make sure this is the full XML file: tomcat-users role rolename=manager/ user username=tomcat password=s3cret roles=manager/ /tomcat-users (and then restart tomcat) -Tim Bruce Nourish wrote: Hi, I have a 6.0.20 Tomcat binary distribution

Re: very high CPU and load...

2009-09-09 Thread keeplearning
I have apache 2.2.3. Not sure how to find the tomcat version. We use mod_proxy_ajp connector. During the test, I see high CPU usage and load on both appservers. So, I don't think it's the issue of everything going to one appserver. With what i read around, increasing maxClients does not help

Re: very high CPU and load...

2009-09-09 Thread Rainer Jung
On 09.09.2009 19:44, keeplearning wrote: I have apache 2.2.3. Not sure how to find the tomcat version. We use mod_proxy_ajp connector. During the test, I see high CPU usage and load on both appservers. So, I don't think it's the issue of everything going to one appserver. With what i read

bypassing a servlet mapping to /*

2009-09-09 Thread Leon Rosenberg
Hi, I have an ugly situation. I have to inject some code of mine into an existing spring mvc webapp. The code is a filter which reacts on some urls and forwards to a jsp for presentation. The application has a spring dispatcher servlet foo which is mapped to /*. My problem is following: my

Re: Need Help - Mod_jk/Apache - Mutiple Content issue

2009-09-09 Thread Rainer Jung
On 09.09.2009 16:11, balakarthik.baska...@wipro.com wrote: Thanks for your reply.I am able to simulate the problem with 1.2.28 as well.This is the mod_jk version that I used in my local setup.Our prod version has 1.2.27.So regardless of the version,the issue is seen. OK Pfa the detailed

RE: tomcat-users.xml and manager role

2009-09-09 Thread Caldarale, Charles R
From: bruce.nour...@gmail.com [mailto:bruce.nour...@gmail.com] On Behalf Of Bruce Nourish Subject: tomcat-users.xml and manager role role rolename=manager/ user username=tomcat password=s3cret roles=manager/ A common error is to forget to remove the comment characters from around the role

RE: bypassing a servlet mapping to /*

2009-09-09 Thread Caldarale, Charles R
From: Leon Rosenberg [mailto:rosenberg.l...@googlemail.com] Subject: bypassing a servlet mapping to /* /net/java/dev/moskito/webui/jsp/Producers.jsp now the request is processed by the servlet engine and is grabed by the spring dispatcher with an error: You can always put the complete

Re: tomcat-users.xml and manager role

2009-09-09 Thread Bruce Nourish
Yup, looks like I'm just retarded. Thanks. On Wed, Sep 9, 2009 at 12:02 PM, Caldarale, Charles Rchuck.caldar...@unisys.com wrote: From: bruce.nour...@gmail.com [mailto:bruce.nour...@gmail.com] On Behalf Of Bruce Nourish Subject: tomcat-users.xml and manager role role rolename=manager/ user

RE: Need Help - Mod_jk/Apache - Mutiple Content issue

2009-09-09 Thread balakarthik.baskaran
Hi Rainer, I did try with the recovery_option as 7 and I was able to see a partial content being sent even in that case.Also,this configuration is what we tried in prod as well(we removed socket_timeout,had reply_timeout to 3 mins and recovery_options to 7).But still multiple content was

RE: Does CVE-2007-0450 (Directory Traversal) affect standalone Tomcat

2009-09-09 Thread Tadelkar, Gauravsagar (Gaurav)
Thanks for the reply, Mark. If possible, can you please point to any references/docs which would help me convince others about the directory traversal vulnerability not impacting a standalone tomcat? Even an explanation would help. I personally do agree that upgrading the tomcat is surely