Hello everyone,
I am looking to setup Zabbix at home and play with it a bit. I've used it many years ago and now looking to get back into it with a fresh new build.
I have Ubuntu 24.04 and I've chosen to start with mysql and apache.
During the configuration phase, I'm not clear on the following:
Download and install Zabbix for Ubuntu
The above steps start off with mysql -uroot -p and password
I assume that since the instructions are telling me to run the following commands, that I'm using password as the password? or should I be setting my own password here?
When I try to set my own password, I run into an error for this command:

I entered in the password from the start of section d. commands for mysql and I get this error.
So I'm not sure why this is the case. Maybe to me, its not clear that I am supposed to set a new password or use a default password for mysql, since al lit asks is "Enter Password"
I know this is a bit of a stupid question and at times I can overthink things hah
Just wanted an understanding as I try to read each line and understand what it will be doing.
Thank you
I am looking to setup Zabbix at home and play with it a bit. I've used it many years ago and now looking to get back into it with a fresh new build.
I have Ubuntu 24.04 and I've chosen to start with mysql and apache.
During the configuration phase, I'm not clear on the following:
Download and install Zabbix for Ubuntu
Code:
# 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> set global log_bin_trust_function_creators = 1; mysql> quit;
Code:
# mysql -uroot -p password mysql> set global log_bin_trust_function_creators = 0; mysql> quit;
Code:
DBPassword=password
I assume that since the instructions are telling me to run the following commands, that I'm using password as the password? or should I be setting my own password here?
When I try to set my own password, I run into an error for this command:
I entered in the password from the start of section d. commands for mysql and I get this error.
So I'm not sure why this is the case. Maybe to me, its not clear that I am supposed to set a new password or use a default password for mysql, since al lit asks is "Enter Password"
I know this is a bit of a stupid question and at times I can overthink things hah
Just wanted an understanding as I try to read each line and understand what it will be doing.
Thank you
Comment