zoukankan      html  css  js  c++  java
  • postfix与sendmail冲突

    在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

     

    参考资料:
    http://blog.chinaunix.net/uid-30212356-id-5081317.html

  • 相关阅读:
    第一阶段冲刺4
    用户场景分析
    最小不重复数
    BOM
    虚拟机下ubuntu系统设置分辨率
    富文本编辑器KindEditor使用
    页面路径设置
    VMware虚拟机不能上网的问题
    Apache Tomcat/7.0.42配置用户
    JFreeChart 横轴文字竖着显示
  • 原文地址:https://www.cnblogs.com/kerrycode/p/4704380.html
Copyright © 2011-2022 走看看