when i enter the log cannot use database "zabbix": its "users" table is empty
Ad Widget
Collapse
Zabbix server is running No
Collapse
X
-
Tags: None
-
Have you followed these steps:
Create initial database
Documentation
Make sure you have database server up and running.
Run the following on your database host.
# 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;
Added the db user and its password in config? -
hi, thanx for your help, i tried but when i create de database zabbix said " error 1007 (HY00) cant create database, database exist,
create user zabbix@localhost, error 1396 (HY00) operation create usear failed for 'zabbix'@'localhost'
frant all privileges, command grant not found, did you mean gant, grunt, try apt install <deb name>Comment
-
Finally its running, but it said localhost:10051 y enter netstat and 10050 and 10051 are in time_waitComment
Comment