postfix与sendmail冲突
2015-08-05 12:22 潇湘隐者 阅读(3699) 评论(0) 编辑 收藏 举报在Linux服务器(CentOS release 6.6)上配置好了sendmail后,测试发送邮件时发现有问题,检查sendmail服务的状态,发现其处于“sendmail dead but subsys locked”, 检查发现postfix服务也在运行。只需要将postfix服务停掉即可。为什么会出现这种情况呢?Something was occasionally causing the postfix service to start which then caused the status of sendmail to jump to dead but subsys locked. 两种似乎不兼容。
操作步骤:
1:检查sendmail服务的状态
[root@DB-Server ~]# service sendmail status
sendmail dead but subsys locked
sm-client (pid 22112) is running...
2:检查postfix服务的状态
[root@DB-Server ~]# service postfix status
master (pid 1777) is running...
3:停止postfix服务
[root@DB-Server ~]# service postfix stop
Shutting down postfix: [ OK ]
4:重新启动sendmail服务
[root@DB-Server ~]# service sendmail stop
Shutting down sm-client: [ OK ]
Shutting down sendmail: [FAILED]
[root@DB-Server ~]# service sendmail stop
[root@DB-Server ~]# service sendmail start
Starting sendmail: [ OK ]
Starting sm-client: [ OK ]
5:禁用postfix在reboot后自动启动
检查一下是否有设定 postfix 在 reboot 后自动启动
chkconfig --list | grep postfix
chkconfig postfix off
扫描上面二维码关注我
如果你真心觉得文章写得不错,而且对你有所帮助,那就不妨帮忙“推荐"一下,您的“推荐”和”打赏“将是我最大的写作动力!
本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接.