window端口被占用

开始---->运行---->cmd

查看端口被哪个进程号占用

netstat -aon|findstr 端口号

  

查看进程号,属于哪个进程

tasklist|findstr 进程号

杀掉进程

taskkill /pid 3500 /F

  

原文地址:https://www.cnblogs.com/hyh123/p/13469662.html