Thank You for helping, but I still think I am having a threading problem. I read here: http://marc.theaimsgroup.com/?l=tomcat-user&m=104378596024043&w=2 that "On linux, the top command displays every java thread as a separate line item."
On my Linux Redhat 7.2 machine I get several listed with the top ( and ps ) command, but on my redhat 8.0 machines I only get 1 listed with the top ( and ps ) command. Does anyone understand this behavior? Thanks again. Shannon ----- Original Message ----- From: "Tim Funk" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Monday, July 07, 2003 11:56 AM Subject: Re: Number of Processes > The JVM is one process. One process with many threads. minProcessors!=OS > processes. > > minProcessors == number of concurrent workers at any given point in time > > -Tim > > Shannon Scott wrote: > > Hello, > > I have noticed that tomcat uses only one process on my new redhat 8.0 machine. > > ( ps -elf | grep tomcat ) > > There is an interesting explanation here. > > > > http://marc.theaimsgroup.com/?l=tomcat-user&m=103762836306068&w=2 > > > > So I wrote a short test_process.jsp page ( below ) that I thought would force another process, but I still only show one when I try to open the page with multiple browsers. > > Does anyone have a way to force another process to begin? > > > > Could something in my configuration not allow other processes? > > I have set the minProcessors=5 in my server.xml Connector. > > > > Linux RedHat 8.0 > > Apache 2.0.43 ( mod_jk ) > > Tomcat 4.1.24 > > > > Any help is greatly appreciated. > > Thank You. > > Shannon > > > > test_process.jsp: > > <%@ page session="false" %> > > <% > > Thread.sleep(10000); > > out.print(" Done... "); > > %> > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
