less than 1 minute read

假如我们需要确定谁占用了我们的 80 端口。

在 windows 命令行窗口下执行:

C:\>netstat -aon|findstr "80"
TCP     127.0.0.1:80         0.0.0.0:0               LISTENING       2448

看到了吗?端口被进程号为 2448 的进程占用,继续执行下面命令:

C:\>tasklist|findstr "2448"
thread.exe                     2016 Console                 0     16,064 K

thread 占用了你的端口,Kill it

如果第二步查不到,那就开任务管理器,看哪个进程是 2448,然后杀之即可。

Tags:

Categories:

Updated:

Comments