Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 windows 和 unix 下使用 netstat 命令确定正在侦听大于 8000 端口的服务?
请你帮帮我好吗?
在 Windows 上,您需要以管理员身份运行命令控制台。然后执行
netstat -ab
b 列出了正在侦听的可执行程序。您应该能够将其与服务相匹配。
我不认为 netstat 在端口上是有选择性的,如果你没有看到任何超过 8000 的端口,那么那里就没有活动或监听。
这适用于窗户。不确定unix上是否也是这种情况。