0%

查看Windows和Linux端口占用情况

Windows查看端口占用情况

1
netstat -ano | findstr <port>

杀掉进程

1
taskkill /pid /f <port>

Linux 查看端口占用情况

1
lsof -i:<port>