If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to REGISTER before you can post. To start viewing messages, select the forum that you want to visit from the selection below.
When i upgrade 2.0.0rc3 to 2.0.1rc2 and use /usr/share/zabbix/upgrades/dbpatches/2.0/postgresql/patch.sql i have many errors, and request ADD server_check_interval integer DEFAULT '60' NOT NULL; not complete...
Looks like a column was missing in my 'config' database table.
This fixed it
ALTER TABLE zabbix.config ADD server_check_interval integer DEFAULT '60' NOT NULL;
Not sure why this column is missing. The schema.sql file has the column in my 2.0.0 source. I upgraded from 1.9.x so it's possible it was missing from an earlier build.
Comment