2017年11月21日 星期二

如何查詢Port被哪個程式佔用了


  • windows
    • 用 netstat 命令

C:\>netstat -ano | findstr 0.0:80

    • 結果

TCP    0.0.0.0:80             0.0.0.0:0              LISTENING       1860


    • 其中 1860 就是佔用 port 的程式 PID,再輸入

C:\>tasklist | findstr 1860
得到如下的資訊

httpd.exe                  1860 Services                0      4,148 K
表示佔用的是 httpd.exe,也就是 Apache Server 還開著。


Posted on 11/21/2017 10:46:00 上午 | Categories: , ,