Ubuntu 埠檢視及關閉

feynman233發表於2018-10-30

1.檢視指定埠:

netstat -ap | grep 6006

也可以使用lsof命令:

lsof -i:6006

2.關閉使用這個埠的程式

kill -9 PID號

相關文章