Ad Widget

Collapse

Zabbix Appliance - Postfix

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Chadinator
    Junior Member
    • Mar 2014
    • 2

    #1

    Zabbix Appliance - Postfix

    Good Morning,

    I am trying to test out the Zabbix 2.2.2 appliance, but have run into a problem with Postfix failing to start. I've rebooted the system, and followed the basic Postfix setup guide here: http://www.postfix.org/STANDARD_CONF...#local_network

    This is the output of
    Code:
    service postfix status
    :

    postfix.service - Postfix Mail Transport Agent
    Loaded: loaded (/usr/lib/systemd/system/postfix.service; enabled)
    Active: failed (Result: exit-code) since Mon, 2014-03-17 09:18:39 EST; 1h 22min ago
    Process: 1649 ExecStopPost=/etc/postfix/system/cond_slp deregister (code=exited, status=1/FAILURE)
    Process: 1638 ExecStop=/usr/sbin/postfix stop (code=exited, status=0/SUCCESS)
    Process: 1632 ExecStartPost=/etc/postfix/system/cond_slp register (code=exited, status=1/FAILURE)
    Process: 1630 ExecStartPost=/etc/postfix/system/wait_qmgr 60 (code=exited, status=0/SUCCESS)
    Process: 1509 ExecStart=/usr/sbin/postfix start (code=exited, status=0/SUCCESS)
    Process: 1504 ExecStartPre=/etc/postfix/system/update_postmaps (code=exited, status=0/SUCCESS)
    Process: 1501 ExecStartPre=/etc/postfix/system/update_chroot (code=exited, status=0/SUCCESS)
    Process: 1487 ExecStartPre=/etc/postfix/system/config_postfix (code=exited, status=0/SUCCESS)
    Process: 1482 ExecStartPre=/bin/echo Starting mail service (Postfix) (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/postfix.service

    Mar 17 09:18:38 nc-mor-netmon.browntrucking.local echo[1482]: Starting mail service (Postfix)
    Mar 17 09:18:39 nc-mor-netmon.browntrucking.local postfix/postfix-script[1628]: starting the Postfix mail system
    Mar 17 09:18:39 nc-mor-netmon.browntrucking.local postfix/master[1629]: daemon started -- version 2.9.6, configuratio...fix
    Mar 17 09:18:39 nc-mor-netmon.browntrucking.local postfix/postfix-script[1646]: stopping the Postfix mail system
    Mar 17 09:18:39 nc-mor-netmon.browntrucking.local postfix/master[1629]: terminating on signal 15
    Mar 17 09:18:39 nc-mor-netmon.browntrucking.local systemd[1]: Failed to start Postfix Mail Transport Agent.
    Mar 17 09:18:39 nc-mor-netmon.browntrucking.local systemd[1]: Unit postfix.service entered failed state

    Any advice and/or guidance appreciated.

    Thanks,
    Chad
  • aib
    Senior Member
    • Jan 2014
    • 1615

    #2
    Originally posted by Chadinator
    Mar 17 09:18:39 nc-mor-netmon.browntrucking.local postfix/master[1629]: daemon started -- version 2.9.6, configuratio...fix
    Mar 17 09:18:39 nc-mor-netmon.browntrucking.local postfix/postfix-script[1646]: stopping the Postfix mail system
    This line looks suspicious.
    It can contain error messsage like "configuration problem in {somewhere}, used incorrect suffix

    I'm just guessing and I can be wrong.
    Sincerely yours,
    Aleksey

    Comment

    • Chadinator
      Junior Member
      • Mar 2014
      • 2

      #3
      Thanks aib,

      I hadn't noticed that the line was shortened by my terminal emulator. Sorry about that, here is what it should say:

      Mar 17 09:18:39 nc-mor-netmon.browntrucking.local postfix/postfix-script[1628]: starting the Postfix mail system
      Mar 17 09:18:39 nc-mor-netmon.browntrucking.local postfix/master[1629]: daemon started -- version 2.9.6, configuration /etc/postfix
      Mar 17 09:18:39 nc-mor-netmon.browntrucking.local postfix/postfix-script[1646]: stopping the Postfix mail system
      Mar 17 09:18:39 nc-mor-netmon.browntrucking.local postfix/master[1629]: terminating on signal 15
      Mar 17 09:18:39 nc-mor-netmon.browntrucking.local systemd[1]: Failed to start Postfix Mail Transport Agent.
      Mar 17 09:18:39 nc-mor-netmon.browntrucking.local systemd[1]: Unit postfix.service entered failed state

      Comment

      • chivasregal
        Junior Member
        • Jan 2014
        • 9

        #4
        Any luck with this?

        Comment

        • kiyotsugu
          Junior Member
          • Jun 2014
          • 1

          #5
          I had same issue and resolved.
          Process: 1649 ExecStopPost=/etc/postfix/system/cond_slp deregister (code=exited, status=1/FAILURE)
          :
          Process: 1632 ExecStartPost=/etc/postfix/system/cond_slp register (code=exited, status=1/FAILURE)
          In /etc/postfix/system/cond_slp, OPENSLP_BIN=/usr/bin/slptool is defined.
          But slptool is not installed on the Zabbix 2.2.2 appliance. So, we have to install it, as below command.
          Code:
          zypper install openslp
          service postfix start
          service postfix status

          Comment

          Working...