window系统查看端口被哪个进程占用了并杀死进程

一、在windows命令行窗口下执行:运行--cmd
C:\>netstat -aon|findstr "8080" 
TCP     127.0.0.1:80       0.0.0.0:0             LISTENING    2448
端口被进程号为2448的进程占用,继续执行下面命令:
C:\>tasklist|findstr "2448" 
thread.exe                   2016 Console                 0     16,064 K

很清楚,thread占用了你的端口,Kill it

命令:taskkill -F -PID 2448

如果第二步查不到,那就开任务管理器,进程---查看---选择列---pid(进程位标识符)打个勾就可以了
看哪个进程是2448,然后杀之即可。

二、linux

netstat -tunlp|grep 8090

猜你喜欢

转载自blog.csdn.net/aa46449521/article/details/81110335
今日推荐