Hi. I have a default postgress/zabbix/nginx install on Ubuntu 16.04. I am following the instructions at https://www.zabbix.com/documentation...ll/db_scripts:
run folowing to create database
$ sudo -u postgres createuser --pwprompt zabbix
$ sudo -u postgres createdb -O zabbix zabbix
$ sudo -i
$ cd /usr/share/zabbix-server-pgsql
$ gzip -d *.sql.gz
$ cat schema.sql | sudo -u zabbix psql zabbix
$ cat images.sql | sudo -u zabbix psql zabbix
$ cat data.sql | sudo -u zabbix psql zabbix
Can connect with
$ PGPASSWORD=<pass> psql -d zabbix -U zabbix
Then during install when I try to connect to DB I get 'The frontend does not match Zabbix database.''
run folowing to create database
$ sudo -u postgres createuser --pwprompt zabbix
$ sudo -u postgres createdb -O zabbix zabbix
$ sudo -i
$ cd /usr/share/zabbix-server-pgsql
$ gzip -d *.sql.gz
$ cat schema.sql | sudo -u zabbix psql zabbix
$ cat images.sql | sudo -u zabbix psql zabbix
$ cat data.sql | sudo -u zabbix psql zabbix
Can connect with
$ PGPASSWORD=<pass> psql -d zabbix -U zabbix
Then during install when I try to connect to DB I get 'The frontend does not match Zabbix database.''
Comment