Hi everybody,
I installed Zabbix 6 on an Ubuntu 20.04 based on the official documentation: https://www.zabbix.com/download?zabb...ysql&ws=apache
Could you please remind me of the default root password of mysql which must be entered in order to go further in the tutorial:
# mysql -uroot -p
password
mysql> create database zabbix character set utf8mb4 collate utf8mb4_bin;
mysql> create user zabbix@localhost identified by 'password';
mysql> grant all privileges on zabbix.* to zabbix@localhost;
mysql> quit;
Thanks in advance.
I installed Zabbix 6 on an Ubuntu 20.04 based on the official documentation: https://www.zabbix.com/download?zabb...ysql&ws=apache
Could you please remind me of the default root password of mysql which must be entered in order to go further in the tutorial:
# mysql -uroot -p
password
mysql> create database zabbix character set utf8mb4 collate utf8mb4_bin;
mysql> create user zabbix@localhost identified by 'password';
mysql> grant all privileges on zabbix.* to zabbix@localhost;
mysql> quit;
Thanks in advance.
Comment