检查使用相同端口的应用程序

检查使用相同端口的应用程序

我在 hMailServer 日志中收到一个错误,some other application is using the ports 25 and 110 please make sure that they are disabled如何找出哪个应用程序正在使用这些端口?

答案1

netstat -nao | findstr ":25\> :110\>"
  • \>表示单词的结束

答案2

在命令提示符下,键入netstat -anb

这将显示您的机器上打开的所有端口,以及打开它们的 PID(进程 ID)。

查找端口 25 和 110 以及 PID。然后打开任务管理器并找到 PID,您将找到打开它们的进程名称。

相关内容