欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

postfix报错postfix: fatal: parameter inet_interfaces: no local interface found for ::1

程序员文章站 2024-02-22 15:43:10
...

启动postfix出错:

postfix: fatal: parameter inet_interfaces: no local interface found for ::1

解决:
vi /etc/postfix/main.cf
发现配置为:

inet_interfaces = localhost
inet_protocols = all

改成:

inet_interfaces = all
inet_protocols = all

重新启动
service postfix start
OK!

相关标签: postfix