java - Jboss AS 7 Maximum number of threads (64) created for connector with address /0.0.0.0 and port 8009 -
i experiencing issue jboss 7.1.1. scenario is, have apache httpd server in front, connected jboss using ajp running spring application. error:
maximum number of threads (64) created connector address /0.0.0.0 , port 8009
i have changed configuration include max-connections flag in ajp connector:
<connector name="ajp" protocol="ajp/1.3" scheme="http" socket-binding="ajp" max-connections="1000"/>
this, unfortunately hasn't fixed issue. can point me in right direction regarding issue?
i think looking maxthreads instead?
maxthreads
the maximum number of request processing threads created connector, therefore determines maximum number of simultaneous requests can handled. if not specified, attribute set 200.
Comments
Post a Comment