1.查询端口进程
netstat -ano | findstr 端口
2.找到端口进程占用的应用
tasklist | findstr 进程号
3.杀死端口进程
taskkill -PID 进程号 -F