I'm doing a simple online shopping, using Tomcat running on Linux. I'ld like to know the maximum number of user concurrently login to the web page that Tomcat able to support.
If you look at server.xml there is an XML tag that looks like this :
<Connector port="8080" maxThreads="150" ... />
This means that tomcat will support 150 concurrent & active http connections.
You may raise or lower this as you wish. How many actual connections it can handle is generally dependant on your network, ethernet cards, internet connection speed, CPU size, RAM size, the amount of RAM assigned to the tomcat JVM and so on.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.