I have read other threads regarding sockets in TIME_WAIT, but I am clearly still missing something.
Below is a few lines from a "netstat -an". How could it get into this situation? If I understood the descriptions I found, we should not have more than one instance of the socket 63444 ... but after the one listed as "LISTEN" there are about 50 individual socket connections with one end at 63444, all in "TIME_WAIT". How could this happen, and how can I fix it?
tcp 0 0 0.0.0.0:63444 0.0.0.0:* LISTEN tcp 0 0 169.254.7.228:63444 169.254.66.84:35391 TIME_WAIT tcp 0 0 169.254.7.228:63444 169.254.66.84:35283 TIME_WAIT tcp 0 0 169.254.7.228:63444 169.254.66.84:35352 TIME_WAIT tcp 0 0 169.254.7.228:63444 169.254.66.84:35431 TIME_WAIT
It isn't the same socket. Look at the remote address. It's the same local IP address and port every time, but the remote addresses are all different.
The server accepted some connections and later closed them.
That's nonsense, wherever you read it. Otherwise TCP servers couldn't work at all.
This is perfectly normal. There is nothing here that needs fixing.
When a connection is accepted, a new socket is created with the same local IP address and port, and the source IP address:port set to those of the client. When the server closes this socket it transitions through various states as the close handshake proceeds, ending in TIME_WAIT for two minutes, and then it disappears.