Windows
直接kill占用端口的进程
Win+R 输入cmd 打开命令行窗口
1.查询本地已被占用的端口号:
下面以8080端口为例:
shell
netstat -aon|findstr "8080"
查看本地8080端口进程的PID
2.杀死"xxxx"端口号的进程 (下面的22868是 你查到的8080端口 的进程id)
shell
taskkill /T /F /PID "22868"
Linux
使用 lsof 工具
yum安装lsof
shell
yum install -y lsof
例如: 查看端口号为9999的进程
shell
lsof -i :9999
或者使用:
shell
netstat -aon | grep 9999
杀掉进程:
shell
kill -9 34788