Sorry if this has been answered elsewhere, I couldn't find anyone discussing this beyond one person on stackoverflow who solved it by switching to postgres.
Following the install guide for Zabbix 5.0 on Ubuntu 18.04 using MySQL and Apache, I issued the following commands:
Worked fine.
Worked fine.
Worked fine.
Entered the password I used in the previous step (copy/pasted both times from a text file), and got:
The user and DB exist, and I'm at a loss as to where to go from here. Did I do something stupid?
Thanks for any help
Following the install guide for Zabbix 5.0 on Ubuntu 18.04 using MySQL and Apache, I issued the following commands:
Code:
wget https://repo.zabbix.com/zabbix/5.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_5.0-1+bionic_all.deb dpkg -i zabbix-release_5.0-1+bionic_all.deb apt update
Code:
apt install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-agent
Code:
mysql -uroot -p [password] mysql> create database zabbix character set utf8 collate utf8_bin; mysql> create user zabbix@localhost identified by 'password'; mysql> grant all privileges on zabbix.* to zabbix@localhost; mysql> quit;
Code:
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
Code:
ERROR 1045 (28000): Access denied for user 'zabbix'@'localhost' (using password: YES)
Thanks for any help
Comment