美文网首页
windows 检查端口占用情况的两种方法

windows 检查端口占用情况的两种方法

作者: mudssky | 来源:发表于2023-06-14 11:01 被阅读0次

    01.netstat

    列出所有端口的情况

    netstat -ano
    

    使用findstr 查找有没有对应的端口占用

    netstat -ano | findstr 8080
    

    02.powershell Get-NetTCPConnection

    Get-NetTCPConnection 可以查看所有正在运行的程序及其占用的端口

    Get-NetTCPConnection
    

    在windows powershell中,执行下面的命令,查看端口占用情况

    Get-Process -Id (Get-NetTCPConnection -LocalPort <port_number>).OwningProcess
    

    可以筛选想要查看的列

    Get-NetTCPConnection | Select-Object LocalAddress,LocalPort,RemoteAddress,RemotePort,OwningProcess | Format-Table -AutoSize
    

    相关文章

      网友评论

          本文标题:windows 检查端口占用情况的两种方法

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