Bootstrap

端口号被占用时的解决办法

1、查看端口占用的进程号

netstat -ano |findstr 8080

2、 找到占用端口的程序

tasklist |findstr 2264

3、kill端口

taskkill /pid 2264 /f

;