windows查看端口占用

查看占用端口的进程ID

netstat -aon | findstr "9000"

再用进程ID查看进程

tasklist | findstr "6048"

原文地址:https://www.cnblogs.com/ShepherdIsland/p/3401007.html