Ad Widget

Collapse

2.0.3 --- Two Problems

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bturnbough
    Member
    • Mar 2011
    • 70

    #1

    2.0.3 --- Two Problems

    Problem #1 -- zabbix[items_unsupported] ALWAYS returns a value of 2 even though I have no unsupported items. I am familiar with how to filter by 'unsupported items' and I definitely don't have any unsupported items.

    Problem #2 -- This line is constantly displaying in /var/log/zabbix/zabbix_agentd.log, even though the line in the zabbix_agentd.conf i have the server name defined. (I have an agent version active check set up as a test, and it is working.)

    /var/log/zabbix/zabbix_agentd.log:
    31907:20121204:090810.999 No active checks on server: host [awnms01] not found

    zabbix_agentd.conf
    ServerActive=127.0.0.1,awnms01,awnms02
    Hostname=awnms01
  • tchjts1
    Senior Member
    • May 2008
    • 1605

    #2
    Originally posted by bturnbough
    zabbix_agentd.conf
    ServerActive=127.0.0.1,awnms01,awnms02
    Hostname=awnms01
    You may want to try the actual IP of your Zabbix server on the ServerActive= field, instead of localhost IP.

    Restart agent after change.

    Comment

    • bturnbough
      Member
      • Mar 2011
      • 70

      #3
      No luck

      Doesn't appear that it made a difference.

      13526:20121204:100700.000 Starting Zabbix Agent [awnms01]. Zabbix 2.0.3 (revision 30485).
      13528:20121204:100700.000 agent #0 started [collector]
      13529:20121204:100700.001 agent #1 started[listener]
      13530:20121204:100700.001 agent #2 started[listener]
      13531:20121204:100700.001 agent #3 started[listener]
      13532:20121204:100700.001 agent #4 started [active checks]
      13533:20121204:100700.001 agent #5 started [active checks]
      13535:20121204:100700.001 agent #6 started [active checks]
      13535:20121204:100700.004 No active checks on server: host [awnms01] not found

      Comment

      • bturnbough
        Member
        • Mar 2011
        • 70

        #4
        Problem #2 solved

        It appears that I wasn't set up on awnms02 for that host yet, so the error message was very misleading. It should be more descriptive to include the name of the server reporting the issue.

        Proposed:

        13535:20121204:100700.004 AWNMS02: No active checks on server: host [awnms01] not found

        Comment

        • bturnbough
          Member
          • Mar 2011
          • 70

          #5
          Problem #1 solved:

          MySQL:

          SELECT
          hosts.host AS hostname,
          items.description AS item,
          items.key_ AS "key"
          FROM
          items
          RIGHT JOIN
          hosts ON items.hostid=hosts.hostid
          WHERE
          items.status = 3;

          Told me that there were some discovery items not supported.

          +---------------+--------------------------------------------------------------------------------------------------------------------+------------------+
          | hostname | item | key |
          +---------------+--------------------------------------------------------------------------------------------------------------------+------------------+
          | Zabbix server | Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". | net.if.discovery |
          | Zabbix server | Discovery of file systems of different types as defined in global regular expression "File systems for discovery". | vfs.fs.discovery |
          +---------------+--------------------------------------------------------------------------------------------------------------------+------------------+

          Comment

          Working...