3

I'm having some issues on a Windows 2008 server with some network connections not going through. For instance, in a web application on the server, we need to open a socket connection to another server, and this fails sometimes with the following message:

Only one usage of each socket address (protocol/network address/port) is normally permitted

I looked up the error, which led me to this page: http://msdn.microsoft.com/en-us/library/aa560610(v=bts.20).aspx, which indicates that it might be TCP/IP port exhaustion.

When I perform netstat -n, I get tons of TIME_WAIT connections on port 80.

Does anyone have any idea what could be causing this?

Rhys Causey
  • 191
  • 1
  • 2
  • 7
  • are you closing the sockets when you are done? Time_Wait can be adjusted to automatically close after a certain time, but perhaps you are not properly closing the sockets, so they are having to time out. How many is 'tons'? – Brian Feb 07 '11 at 19:00

1 Answers1

5

All the remote ports in range of 32768 - 61000 are in TIME_WAIT state and don't release even few tens of minutes after application termination. Our server was running for almost two years without restart.

I have found following: http://support.microsoft.com/kb/2553549

Jan
  • 51
  • 1
  • 2
  • Years later--trying to figure out some TCP problems on an old server--this was a huge help to me. Thank you. – bradenb Aug 15 '14 at 15:54