A python process listen on port 4001, and there is clients connected to it and play some chess game. but strangely, One more than two days later, there may be one or two more other process listen on the same port 4001 which block the data which should send to my python server.<br>I use the "sudo netstat -antup" intented to find the process ID, but that newly created process listening on port 4001 has no pid or pname.<br>And when I try to kill the initial python server process listening on port 4001 using command kill pid, after exected the kill command, I use netstat -antup again, suprisingly, I found that process which should be killed are still alive.<br>Then I use command kill -9 pid to kill it, then execute netstat - antup commnd, all the process listening on port 4001 disappeared.<br><br>Would u please kindly give me any answer?<br><br>I use the TWISTD to start my application. the outline for them is below:<br><pre style="background-color:#ffffff;color:#000000;font-family:'DejaVu Sans Mono';font-size:12pt;">$TWISTD ......<br>from twisted.application import service, internet<br>application = service.Application("myserver")<br></pre>Thanks,<br>Mark<br>