Windows
- 查看所有
> netstat -ano
- 查看指定
> netstat -ano|findstr "8080"
列表表头依次为:协议,本地地址,外部地址,状态,PID
- 查找对应进程,输入对应的PID
> tasklist|findstr "8968"
- 关闭进程
> tastkill /f /t /im java.exe
Linux
- 查找指定端口
$ netstat -anp|grep 8080
- 关闭进程,参数为上面的PID
$ kill -9 PID
> netstat -ano
> netstat -ano|findstr "8080"
列表表头依次为:协议,本地地址,外部地址,状态,PID
> tasklist|findstr "8968"
> tastkill /f /t /im java.exe
$ netstat -anp|grep 8080
$ kill -9 PID