Too many Close_wait in jetty 9.0.3

牧云@^-^@ 提交于 2019-12-01 13:19:55

The close_wait connections vanished when closeIdleConnections(0) provided by Apache commons http Client 3.1. But now too many TIME_WAIT are getting established and back end i am getting errors like "Address already in use" :(

Finally CLOSE_WAIT connections were not seen after using closeIdleConnections(0). Hope this solution might help others :)

CLOSE_WAIT means that TCP is waiting for the local application to close its end of the connection, which has already been closed by the peer.

Ergo you aren't closing them.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!