https://www.cnblogs.com/personsiglewine/p/10968371.html
Windows中杀死占用某个端口的进程
1
打开cmd命令窗口,输入命令,根据端口号查找对应的进程号
netstat -ano | findstr 8300 //列出进程极其占用的端口,且包含
2
强制关闭某个进程
taskkill -pid 8300 -f
image.png
https://www.cnblogs.com/personsiglewine/p/10968371.html
1
打开cmd命令窗口,输入命令,根据端口号查找对应的进程号
netstat -ano | findstr 8300 //列出进程极其占用的端口,且包含
2
强制关闭某个进程
taskkill -pid 8300 -f
image.png
本文标题:Windows中杀死占用某个端口的进程
本文链接:https://www.haomeiwen.com/subject/uyidaktx.html
网友评论