查看端口 netstat -an netstat -ano 查看某个端口被哪个应用占用 netstat -ano |findstr "端口号" 根据进程id查看进程名称 tasklist |findstr "进程id号" 杀掉进程 taskkill /f /t /im "进程id或者进程名称"