How to find process using TCP port?
问题 After starting a http a couple of times I get this error like an instance of Go has not stopped!? listen tcp :9000: bind: address already in use I have experienced something like this with nodejs too but I was able to kill the process.. Unfortunately it seems like I can't find the process id and kill it.. How to "free" the tcp port? 回答1: If you are on unix like system you can use netstat to find out which process is listening on a port: sudo netstat -nlp | grep 9000 Turns out the -p option is