美文网首页
windows下端口占用查看、杀死进程操作

windows下端口占用查看、杀死进程操作

作者: 小明今晚加班 | 来源:发表于2018-12-27 14:44 被阅读8次
  • 1、找到占用某个端口号的PID:netstat -ano|findstr "端口号"
  • 2、根据PID找到是什么进程占用了你的端口号:tasklist|findstr "PID"
  • 3、根据进程名称杀死该进程: taskkill /f /t /im 进程.exe

相关文章

网友评论

      本文标题:windows下端口占用查看、杀死进程操作

      本文链接:https://www.haomeiwen.com/subject/sbbrlqtx.html