【发布时间】:2010-09-08 01:43:38
【问题描述】:
如何找出哪个进程正在侦听 Windows 上的 TCP 或 UDP 端口?
【问题讨论】:
-
Currports 也是一个帮助搜索+过滤的工具nirsoft.net/utils/cports.html
-
我在 IntelliJ 下尝试以调试模式运行 Tomcat 时遇到了这个问题,对我来说最好的解决方案是更改调试传输配置(File->Settings->Build/exe/deploy- >调试器)从“套接字”到“共享内存”。
-
netstat -aof | findstr :8080(为任何端口更改 8080) -
@DavidJesus 在 Windows 10 上不显示进程。
-
@SmitJohnth 我使用
netstat -aof | findstr :3306在 Windows 10 上查找 MySQL 进程,并且工作起来很神奇。
标签: windows networking port