windows端口占用

发布 : 2024-12-13 浏览 :

查看端口占用情况

找到端口占用的进程id
netstat –ano|findstr 8080

查看是那个进程
tasklist | findstr 25140

杀掉进程
taskkill/pid 25140

如果找不到被占用的进程

检查是否保留端口
netsh interface ipv4 show excludedportrange protocol=tcp

如果端口在保留段中

停止网络重新分配保留段

net stop winnat

排除常用端口段
netsh int ipv4 add excludedportrange protocol=tcp startport=1024 numberofports=10000

net start winnat

本文作者 : zhouinfo
原文链接 : http://blog.zhouinfo.site/2024/12/13/windows%E7%AB%AF%E5%8F%A3%E5%8D%A0%E7%94%A8/
版权声明 : 本博客所有文章除特别声明外,均采用 CC Apache License 2.0 许可协议。转载请注明出处!
留下足迹