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.
电子邮件的处理速度非常慢,平均为 500 / 20 分钟。并且有一个 40000 的队列尚未发送。
如何检查正在使用的端口。有两个端口 25 和 26。我不确定如何检查正在使用哪个端口。
还如何检查 SMTP 错误日志的位置。
提前致谢。
使用 telnet(Windows 和 Linux 使用相同的命令):
telnet domain.com 25 telnet domain.com 26
给出 220 响应的端口是使用的端口。(如果您没有从远程计算机连接,请使用 localhost 作为域)
如果您愿意,可以使用 IP 地址而不是域。顺便说一句,您需要在较新的 Windows 版本中启用 telnet,默认情况下它是禁用的。