Centos
“請配置完全限定域名”錯誤
我正在虛擬主機上執行 nginx 網站,並且正在嘗試設置 iRedMail,但這是我在執行時遇到的錯誤
bash iRedMail.sh
。< 錯誤 > 在我們繼續之前,請在 /etc/hosts 中配置一個完全限定域名 (FQDN)。
etc/sysconfig/network
文件NETWORKING=yes HOSTNAME=mail.website1.com
etc/hosts
文件(xxx.xx.xxx.xxx 是我的真實伺服器 ip 地址)127.0.0.1 mail.website1.com mail localhost ::1 localhost xxx.xx.xxx.xxx website1.com xxx.xx.xxx.xxx website2.com
我究竟做錯了什麼?謝謝!
編輯:仍然出現此錯誤。
< 錯誤 > 在我們繼續之前,請在 /etc/hosts 中配置一個完全限定域名 (FQDN)。
例子:
127.0.0.1 mail.iredmail.org 郵件本地主機
這是我的新配置文件:
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 xxx.xx.xxx.xxx website1.com xxx.xx.xxx.xxx mail.website1.com mail xxx.xx.xxx.xxx website2.com
您的
/etc/hosts
文件應該有一個單獨的行來定義系統的 IP 和完全限定域名以及同一行的短名稱。將“mail.website1.com”和“mail”從帶有127.0.0.1
.127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 10.2.0.6 mail.website1.com mail
進行此更改並再次嘗試。
另請參閱:設置主機名:FQDN 還是短名稱?