Link to home
Start Free TrialLog in
Avatar of dmoshal
dmoshal

asked on

tomcat max threads

anyone know how to increase Tomcat's max threads (5.0.28).
Any idea what the max number of threads I can assign ?

thanks

Dave
Avatar of durgaprasad_j
durgaprasad_j

hi,
just open <Tomcat-install-dir>/conf/server.xml . You will a Connector element in that xml file [its around 76 line]. In that element, there is a attribute called maxThreads. Try changing that.

I saw that option in tomcat 5.5.4. I dont know about tomcat 5.0.28 [ mostly it will be same in this also].

Hope this helps
DP
ASKER CERTIFIED SOLUTION
Avatar of Mayank S
Mayank S
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of dmoshal

ASKER

thanks - you've both  been very helpful - any idea where I can find more info on the threading parameters - there seem to be several, and I have an unusual application which uses many persistent connections. I'm considering non-blocking NIO as an alternative.

Dave