摘要: 以端口8080为例: 1.查找对应的端口占用的进程:netstat -aon|findstr "8080" ,找到占用8080端口对应的程序的PID号: 2.根据PID号找到对应的程序:tasklist|findstr "PID号" ,找到对应的程序名 3.结束该进程:taskkill /f /t 阅读全文
posted @ 2018-09-18 22:37 Python研究者 阅读(1910) 评论(0) 推荐(1) 编辑