作業系統:GNU/Linux Debian 9.2 64 位元
我禁用 IPv6在我的一台伺服器上。
現在我把這個放進去mail
:
exim paniclog
...
IPv6 socket creation failed: Address family not supported by protocol
我該如何擺脫它?
答案1
首先,需要在exim4
.
在以下文件中:
/etc/exim4/update-exim4.conf.conf
確保此行存在,如果不存在,請添加它或更改它:
disable_ipv6='true'
但我只嘗試了這個解決方案,郵件仍然收到,所以進一步挖掘...
在同一文件中,請確保此行設定為true
:
dc_minimaldns='true'
現在編輯這個檔案:
/etc/hosts
讓我們假設,這一行定義了您的伺服器名稱:
127.0.1.1 server-name
更改如下:
127.0.1.1 server-name.localhost server-name
現在,驗證該命令:
hostname --fqdn
返回:
server-name.localhost
如果是這樣,您可以更新您的 Exim4 配置:
update-exim4.conf
並重新啟動 Exim4 服務:
systemctl restart exim4.service