use "netstat -b" to see used ports and the executables using them
搜索打开的端口号:
in Windows:
netstat -an|find "61616"
in Linux:
netstat -an|grep 61616
本文介绍了如何在Windows和Linux系统中使用netstat命令来查看正在使用的端口及其对应的执行文件。通过具体命令示例展示了如何查找特定端口号。
use "netstat -b" to see used ports and the executables using them
搜索打开的端口号:
in Windows:
netstat -an|find "61616"
in Linux:
netstat -an|grep 61616
4725

被折叠的 条评论
为什么被折叠?