错误:服务(POP3登陆):听(:110)失败:
错误:插座()不按协议支持的地址族失败
:错误:不按协议支持的地址族(POP3登录):听 (: ,995)失败:
错误:插座()不按协议支持的地址族失败:
协议错误:地址族不支持服务(IMAP登陆):听(:143)失败
:错误不按协议支持的地址族: 插座()失败:
错误:不按协议支持的地址族(IMAP登陆):听(:993)失败:不按协议
支持致命的地址家庭:无法启动监听器
Error: service(pop3-login): listen(::, 110) failed: Address family not supported by protocol
Error: socket() failed: Address family not supported by protocol
Error: service(pop3-login): listen(::, 995) failed: Address family not supported by protocol
Error: socket() failed: Address family not supported by protocol
Error: service(imap-login): listen(::, 143) failed: Address family not supported by protocol
Error: socket() failed: Address family not supported by protocol
Error: service(imap-login): listen(::, 993) failed: Address family not supported by protocol
Fatal: Failed to start listeners
-------------------------------------------------------------------------------------
it means that Dovecot is trying to bind to an IPv6 interface, but your system doesn't support IPv6. The solution is to tell Dovecot to only listen on an IPv4 interface. You can do this by adding the following to the very top of your /etc/dovecot.conf file
这意味着,Dovecot是试图绑定到IPv6接口,但您的系统不支持IPv6。解决的办法是告诉达夫科特只监听IPv4接口。你可以到你的/ etc / dovecot.conf文件中加入以下这
错误:插座()不按协议支持的地址族失败
:错误:不按协议支持的地址族(POP3登录):听 (:
错误:插座()不按协议支持的地址族失败:
协议错误:地址族不支持服务(IMAP登陆):听(:143)失败
:错误不按协议支持的地址族:
错误:不按协议支持的地址族(IMAP登陆):听(:993)失败:不按协议
支持致命的地址家庭:无法启动监听器
Error: service(pop3-login): listen(::, 110) failed: Address family not supported by protocol
Error: socket() failed: Address family not supported by protocol
Error: service(pop3-login): listen(::, 995) failed: Address family not supported by protocol
Error: socket() failed: Address family not supported by protocol
Error: service(imap-login): listen(::, 143) failed: Address family not supported by protocol
Error: socket() failed: Address family not supported by protocol
Error: service(imap-login): listen(::, 993) failed: Address family not supported by protocol
Fatal: Failed to start listeners
-------------------------------------------------------------------------------------
it means that Dovecot is trying to bind to an IPv6 interface, but your system doesn't support IPv6. The solution is to tell Dovecot to only listen on an IPv4 interface. You can do this by adding the following to the very top of your /etc/dovecot.conf file
listen = *
The internal default islisten = *, ::
where the :: is the IPv6 part, hence you don't want to use that in this case.这意味着,Dovecot是试图绑定到IPv6接口,但您的系统不支持IPv6。解决的办法是告诉达夫科特只监听IPv4接口。你可以到你的/ etc / dovecot.conf文件中加入以下这
听= *
内部默认听=::
:是IPv6的一部分,因此你不希望在这种情况下,使用。
原文:http://blog.sina.com.cn/s/blog_7cc2d3440100tzwx.html