Ad Widget

Collapse

[1.5.3] Div. Problems

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • NOB
    Senior Member
    Zabbix Certified Specialist
    • Mar 2007
    • 469

    #1

    [1.5.3] Div. Problems

    Hi,

    one of the problems which leads to a
    Code:
    zabbix_server stop
    is the definition in the DB-table "trends".
    I had to change the three lines (in postgresql.sql) from
    Code:
    value_min		numeric(16,4)		DEFAULT '0.0000'	NOT NULL,
    	value_avg		numeric(16,4)		DEFAULT '0.0000'	NOT NULL,
    	value_max		numeric(16,4)		DEFAULT '0.0000'	NOT NULL,
    to

    Code:
    	value_min		numeric(18,4)		DEFAULT '0.0000'	NOT NULL,
    	value_avg		numeric(18,4)		DEFAULT '0.0000'	NOT NULL,
    	value_max		numeric(18,4)		DEFAULT '0.0000'	NOT NULL,
    Another problem is on FreeBSD 6.x. The agent crashes if any of the proc.num
    checks are enabled. Error message (from memory):
    "free: Block already freed".
    After disabling all the proc.num checks in the ZABBIX Server template
    the agent works fine.
    I'll see whether my changes for the proc.num part in the 1.4.5 agent
    for FreeBSD 6.x can be applied to the 1,5,x version.
    As written in another post in this forum I have two versions:
    One works for all processes (as far as tested by me), but requires
    access of the user zabbix to kmem, the other accesses the /proc
    filesystem directly but can not see all processes, e.g. sshd.

    Regards

    Norbert.
  • Alexei
    Founder, CEO
    Zabbix Certified Trainer
    Zabbix Certified SpecialistZabbix Certified Professional
    • Sep 2004
    • 5654

    #2
    We are going to review database structure to make sure that there are no problems like this one. This will be done very soon.
    Alexei Vladishev
    Creator of Zabbix, Product manager
    New York | Tokyo | Riga
    My Twitter

    Comment

    Working...