Tomcat 3.2.4, Java 1.3.1, linux, and process usage

2002-01-22 Thread Brandon Cruz
I am using the configuration above, and whenever someone accesses a jsp page, it seems that several processes are created. I am not an expert with linux, but it seems that multiple processes are created, which are each taking up the exact same amount of memory (around 14%). Is this normal, and

Re: Tomcat 3.2.4, Java 1.3.1, linux, and process usage

2002-01-22 Thread Denny Chambers
They are not really seperate processes. They are threads off of a running process. Linux just shows them as process. Use this command here ( ps -faux | grep java )and you can see who is the parent and who is the child. As far as the memory usage, all of these threads are sharing this 14% of

Re: Tomcat 3.2.4, Java 1.3.1, linux, and process usage

2002-01-22 Thread David Cassidy
If your OS has it have a try with pstree its very illustrative on this ... Denny Chambers wrote: They are not really seperate processes. They are threads off of a running process. Linux just shows them as process. Use this command here ( ps -faux | grep java )and you can see who is the

Tomcat 3.2.4, Java 1.3.1, linux, and process usage

2002-01-21 Thread Brandon Cruz
I am using the configuration above, and whenever someone accesses a jsp page, it seems that several processes are created. I am not an expert with linux, but it seems that multiple processes are created, which are each taking up the exact same amount of memory (around 14%). Is this normal, and