Tagged Questions
3
votes
1answer
692 views
How to do like “netstat -p”, but faster?
Both "netstat -p" and "lsof -n -i -P" seems to readlinking all processes fd's, like stat /proc/*/fd/*.
How to do it more efficiently?
My program wants to know what process is connecting to it. ...
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
153 views
Java Socket Connection initiated through web application, reopens when server restarts
I have a web application running on a Tomcat 6, installed on a Windows Server 2003. This application opens socket connections with at different server to retrieve some data. This application has been ...
1
vote
0answers
298 views
How to find the other point of a Unix domain socket on Mac OS X to write/read it?
I listed open file for a process (a daemon) on my box which runs Mac OS X 10.5 :
>lsof -p 89
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
...
xxxxx 89 xxxxxxxx 9u unix ...
0
votes
1answer
50 views
Getting a socket status through C++ application(Linux)
I need to write a code that forcibly closes child processes that have connections in
CLOSE_WAIT status. It should be running at the father process and constantly
check the forked child ...
0
votes
1answer
114 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
381 views
netstat command on a server (winform application)
I'm looking for how to recorgnize some server (windows in my case) network configuration (information we obtain using netstat dos command).
I have the login and password of the target (server), ...
0
votes
0answers
259 views
Socket isn't listed by netstat unless using certain ports
I'm a computer science student with a few years of programming experience. Yesterday, while working on a project (Mac OS X, BSD sockets) at school, I encountered a strange problem.
I was adding ...
0
votes
1answer
333 views
java: bind exception address in use error when it isn't in use (as shown by netstat)
My app makes an outbound connection to a server using a specific source port (in anticipation of firewall problems - a hardened system will probably require ports to be specified ahead of time).
My ...
0
votes
3answers
776 views
Why does my Perl server fail to bind to port 80?
I copied the following script and run it to have it listen on port 80. But netstat doesn't show port 80. Why does netstat not sow it, or the Perl script is not correct?
#!/usr/bin/perl -w
use ...
0
votes
4answers
939 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 ...