Hi,
one of the problems which leads to a
is the definition in the DB-table "trends".
I had to change the three lines (in postgresql.sql) from
to
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.
one of the problems which leads to a
Code:
zabbix_server stop
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,
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,
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.
Comment