windows如何查看端口占用情况?

2021-03-01 06:27

阅读:787

标签:如何   net   taskkill   名称   bsp   code   一点   find   windows   

windows如何查看端口占用情况?
1.cmd窗口中输入"netstat -ano"命令 查看系统所有端口的占用情况

netstat -ano

2.已知具体端口号,输入"netstat -ano | findstr "端口号""命令

netstat -ano | findstr "端口号"

3.通过步骤2可查询出占用该端口的进程id,通过下面的命令杀掉进程

taskkill /f /t /im "进程id或者进程名称"

 

每天进步一点点!

windows如何查看端口占用情况?

标签:如何   net   taskkill   名称   bsp   code   一点   find   windows   

原文地址:https://www.cnblogs.com/ixan/p/14402351.html


评论


亲,登录后才可以留言!