最近发现服务器启动postfix失败的问题
postfix_start.png
查看postfix的状态,显示“状态为master已死,但pid文件仍存”。
postfix_status.jpg
这不就是告诉我服务死了,但是进程id还是在的,再启动肯定是失败的了
执行postfix check检查main.cf配置文件是否正确,结果如下图
postfix_check.png
从报错信息看到配置文件中的inet_interfaces参数错误;查看主配置文件(vim /etc/postfix/main.cf),果然监听了localhost;将“inet_interfaces = localhost”注释掉,放开“inet_interfaces = all”注释,保存退出编辑,重启postfix,查看效果,成功了耶
postfix_start_succ.png
服务重启成功,接下来查看端口是否运行正常,如图显示,显示端口监控smtp服务:
sudo lsof -i:25
lsof25.png
网友评论