Reputation: 73
I am performing a JMeter test and I am receiving the following error in my HTML report & CSV.
Non HTTP response code: java.net.NoRouteToHostException/Non HTTP response message: Can't assign requested address (Address not available)
Note 1: I am also not reserving any server logs for the above error. so, not sure whether it is really an error or is there something to do with the JMeter itself.
Note 2: I have also seen some couple of feeds regarding this issue. but, thats seems to be too old and it doesn't help me really.
Upvotes: 3
Views: 10420
Reputation: 168217
As per the exception description
Signals that an error occurred while attempting to connect a socket to a remote address and port. Typically, the remote host cannot be reached because of an intervening firewall, or if an intermediate router is down.
Most probably this is your server issue like:
So this is definitely indicates the error in the application under test or middleware configuration, I would recommend reporting it as a bug. Going forward make sure to monitor the application under test resources (CPU, RAM, Network, Disk, Swap, etc.) in order to be able to correlate the increasing load with the resources consumption, it can be done using i.e. JMeter PerfMon Plugin, the tool you should be looking for to track the number of open connections is netstat
Upvotes: 4