2

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.

Ori Marko
  • 56,308
  • 23
  • 131
  • 233
Saksham
  • 41
  • 1
  • 2

1 Answers1

0

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:

Dmitri T
  • 159,985
  • 5
  • 83
  • 133
  • 2
    i have already tried the above given setting in user.properties and hc.parameters file. but still facing same issue of "Connection Reset" :( – Saksham Aug 08 '17 at 15:07