在我测试邮件服务器时, 使用

telnet localhost 25

出现如下的提示:

Trying::1... telnet: connect to address ::1:Connection refused
Trying127.0.0.1...
Connected to localhost.
Escape character is '^]'.
OK
Connection closed by foreign host.

如图:

telnet: connect to address ::1: connect refused [centos, linux]

出现这种提示是说明该软件监听11211端口并不支持IPV6, 解决这个问题的方法是使用127.0.0.1 , 即:

telnet 127.0.0.1 25

telnet: connect to address ::1: connect refused [centos, linux]

 

纪录这个主要是为提醒那些追求软件完美配置的朋友, 出现这种提示并不是你的软件配置问题, 你可以放心地进行下一步相应的配置了. 

相关文章:

  • 2021-12-21
  • 2022-01-01
  • 2022-12-23
  • 2021-05-19
  • 2022-02-16
  • 2021-11-27
  • 2021-11-25
  • 2021-06-02
猜你喜欢
  • 2021-10-27
  • 2022-12-23
  • 2021-07-13
  • 2021-11-02
  • 2021-10-17
  • 2022-12-23
相关资源
相似解决方案