Hi All,

I am using apache-tomcat 6.0.26 and below is my server.xml

        <Connector port="8080" protocol="org.apache.coyote.
http11.Http11NioProtocol"
                redirectPort="8443" maxKeepAliveRequests="1"
                maxThreads="5000" minSpareThreads="100"
maxSpareThreads="300"
                processCache="500" acceptorThreadCount="1"
                enableLookups="false" disableUploadTimeout="false"
                connectionUploadTimeout="240000"
                compression="on"
                compressionMinSize="2048"
                noCompressionUserAgents="gozilla, traviata"
                compressableMimeType="text/html,text/xml"
                acceptCount="50"
                connectionTimeout="60000"
                />

   <Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol"
                maxThreads="10000" minSpareThreads="100"
maxSpareThreads="300"
                processCache="500" acceptorThreadCount="1"
                enableLookups="false" disableUploadTimeout="false"
                connectionUploadTimeout="240000"
                compression="on" connectionTimeout="60000"
                compressionMinSize="2048"
                noCompressionUserAgents="gozilla, traviata"
                compressableMimeType="text/html,text/xml"
                acceptCount="50" scheme="https" secure="true"
                address="X.X.X.X"  allowTrace="false"
                SSLEnabled="true"
                SSLCertificateFile="...."
                SSLCertificateKeyFile="..."
                clientAuth="false" sslProtocol="TLSv1"
maxKeepAliveRequests="1"/>


I have executed CURL request, around 5000 and after that I kill all my curl
process. So, all ESTABLISHED connection becomes in CLOSE_WAIT state.

Is any configuration is missing or doing something wrong..

Please help me out.


-- 
Regards,

Chandrakant Solanki

Reply via email to