Tagged Questions
4
votes
1answer
2k views
Who is listening on a given TCP port on Mac OS X?
On Linux, I can use netstat -pntl | grep $PORT or fuser -n tcp $PORT to find out which process (PID) is listening on the specified TCP port. How do I get the same information on Mac OS X?
2
votes
5answers
2k views
Troubleshooting connections stuck in CLOSE_WAIT status
I have a Java application running in WebLogic 11g on Windows, which after several days, becomes unresponsive. One suspicious symptom I've noticed is that a large number of connections (about 3000) ...
1
vote
1answer
97 views
Socket not listed in lsof but is listed in netstat
When I do "lsof -nl | egrep "TCP|UDP" " in order to see socket states, I notice that the sockets that I expected to be listed are not at all, but when I do a "netstat --tcp", they are listed, but are ...
0
votes
1answer
113 views
what is the command in linux to kill tcp connection or session? [closed]
Possible Duplicate:
How do I break an arbitrary TCP/IP connection on Linux?
I want to close the socket connection cretead for some clients in server machine
i want to do this using command ...
0
votes
2answers
425 views
Port Stuck in Time_Wait
I have a TCP Tunnel in C#. I need to open and close the tunnel which is my app between a server and a client. I'm using this to close the data connection to test out another app. I have to use ...
0
votes
1answer
146 views
How can I force a refresh of what ports have listeners
I'm trying to re-launch a WCF service that I killed earlier, but I'm getting an AddressAlreadyInUseException. The port it's attempting to use is 1819.
I ran netstat -nao from the command line, and ...
0
votes
4answers
936 views
What is the state of a TCP socket after remote closed?
Say I have accepted() a connection to my server (that runs on a Solaris) and the client has closed the connection. What is the state of the socket (in netstat categories) of the socket on the server ...