- 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 還開著。
C:\>netstat -ano | findstr 0.0:80
TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 1860
C:\>tasklist | findstr 1860得到如下的資訊
httpd.exe 1860 Services 0 4,148 K