Hi,
I was curious about the new zabbix version, during the installation i found out the installation manual was not entirely correct.
The package files are installed from repo.zabbix.com.
Database postgres
Centos 7
I found out there is a schema /usr/share/doc/zabbix-server-pgsql-3.0.0/create.sql.gz
Gunzip the file and import create.sql in the zabbix database.
The installation manual is not correct as this point.
PostgreSQL
We assume that a username user exists and has permissions to create database objects.
shell> psql -U <username>
psql> create database zabbix;
psql> \q
shell> cd database/postgresql
shell> psql -U <username> zabbix < schema.sql
# stop here if you are creating database for Zabbix proxy
shell> psql -U <username> zabbix < images.sql
shell> psql -U <username> zabbix < data.sql
Don't forget to check SELinux and configure the right permissions.
Zabbix 3.0 runs like charm.
Regards
Ronald Schouw
I was curious about the new zabbix version, during the installation i found out the installation manual was not entirely correct.
The package files are installed from repo.zabbix.com.
Database postgres
Centos 7
I found out there is a schema /usr/share/doc/zabbix-server-pgsql-3.0.0/create.sql.gz
Gunzip the file and import create.sql in the zabbix database.
The installation manual is not correct as this point.
PostgreSQL
We assume that a username user exists and has permissions to create database objects.
shell> psql -U <username>
psql> create database zabbix;
psql> \q
shell> cd database/postgresql
shell> psql -U <username> zabbix < schema.sql
# stop here if you are creating database for Zabbix proxy
shell> psql -U <username> zabbix < images.sql
shell> psql -U <username> zabbix < data.sql
Don't forget to check SELinux and configure the right permissions.
Zabbix 3.0 runs like charm.
Regards
Ronald Schouw
Comment