【个人记录】端口号占用如何解决

80 阅读1分钟

查看1000端口的进程:netstat -aon|findstr "10000"

image.png

发现10000端口号对应的PID为48232,结束进程: taskkill -pid 48232 -f

image.png