1
votes

I am working on load test for a Website with 240 Users/Load having 5 different scenarios.

I have distributed load within 15 different machines. I am facing ERROR java.net.SocketException: Connection reset many times.

Below is the ERROR log: enter image description here

Please help me resolve this issue.

1
Please refer the image attached , it has the Error log - Saksham
This is common error when server is under stress. Do you have also errors in application in same time? - user7294900
yes i have few errors in application too. but there are many of this Connection Reset errors. Any resolution to fix it. - Saksham

1 Answers

0
votes

If you are absolutely sure that your application is not overloaded and operates as expected you can try the steps described in the Connection Reset since JMeter 2.10 ? article, to wit:

  • in user.properties file:

    httpclient4.retrycount=1
    hc.parameters.file=hc.parameters
    httpclient4.idletimeout=something above zero if your server doesn't send Keep-Alive headers
    
  • in hc.parameters file

    http.connection.stalecheck$Boolean=true
    

JMeter restart will be required to pick the properties up

References: