Skip to content

Instantly share code, notes, and snippets.

@pgaref
Last active September 18, 2018 10:10
Show Gist options
  • Save pgaref/7ed87e47cd735a423e70 to your computer and use it in GitHub Desktop.
Save pgaref/7ed87e47cd735a423e70 to your computer and use it in GitHub Desktop.
Jmeter running out of addresses
java.net.NoRouteToHostException: Cannot assign requested address: JMeter server is unable to allocate a port to create a connection to the JMeter client to return the samples.
Same thing happened to Nginx front-end as well!
java.net.NoRouteToHostException: Cannot assign requested address
Otherwise, the following messages may appear in the JMeter JTL files:
Non HTTP response code: java.net.BindException
Non HTTP response message: Address already in use
The solution is to enable fast recycling TIME_WAIT sockets.
echo 1 > /proc/sys/net/ipv4/tcp_tw_recycle
@akalongman
Copy link

net.ipv4.tcp_tw_recycle has been removed from Linux 4.12

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment