Re: Why 41 processes with Tomcat under Linux

2004-05-20 Thread Software
Which Linux platform are do you install, because with RH 7.3 you can see many proccess (almost 40 proccess) with ps -auxw --forest | grep java and i've installed to test the same environmet and using the same command to review the java proccess and i've saw only one...my conclusion is the kerne

Re: Why 41 processes with Tomcat under Linux

2004-05-18 Thread Tim Funk
nformatics -Original Message- From: Kevin Schroeder [mailto:[EMAIL PROTECTED] Sent: Monday, May 17, 2004 6:08 PM To: Tomcat Users List; [EMAIL PROTECTED] Subject: Re: Why 41 processes with Tomcat under Linux I might be wrong about this, but I believe that under Linux each thread shows up as

RE: Why 41 processes with Tomcat under Linux

2004-05-18 Thread Shapira, Yoav
D] >Sent: Monday, May 17, 2004 6:08 PM >To: Tomcat Users List; [EMAIL PROTECTED] >Subject: Re: Why 41 processes with Tomcat under Linux > >I might be wrong about this, but I believe that under Linux each thread >shows up as a process. In my own multi-threaded applications I s

Re: Why 41 processes with Tomcat under Linux

2004-05-17 Thread Sunitha Kumar
you may have the wrong libs , especially the thread libs. should show up as a single process.. Bob White wrote: I just installed TC 5.0.19 under Linux and I find that it causes 41 Tomcat processes to be launched. Why is this? How can I control the number of processes that are created? Is this to

Re: Why 41 processes with Tomcat under Linux

2004-05-17 Thread Emerson Cargnin
Under kernel post 2.6 you'll see just one process per JVM. Sheng Huang wrote: Hi Bob, Some process may be child processes of the Tomcat processes. For example, Tomcat may have a process for a specific jar in the /lib directory. You can tell this by examining process id. The "root" tomcat process id

RE: Why 41 processes with Tomcat under Linux

2004-05-17 Thread Sheng Huang
Hi Bob, Some process may be child processes of the Tomcat processes. For example, Tomcat may have a process for a specific jar in the /lib directory. You can tell this by examining process id. The "root" tomcat process id will have ppid=1, where others will have ppid = pid of the "root" process. I

Re: Why 41 processes with Tomcat under Linux

2004-05-17 Thread Kevin Schroeder
I might be wrong about this, but I believe that under Linux each thread shows up as a process. In my own multi-threaded applications I see many threads under "ps" when I start a single instance of that program. Kevin - Original Message - From: "Bob White" <[EMAIL PROTECTED]> To: <[EMA