例如想查看某个端口 9943 被哪个进程占用了,可进行如下操作:
netstat -apn | grep 9443
查看9443被哪些进行占用
ps -ef | grep 9443
然后可用 kill -9 关掉这些进程