hello masters,
i've just installed zabbix according to the guide:https://www.zabbix.com/download
i have completed:
a. Install Zabbix repository
# rpm -Uvh https://repo.zabbix.com/zabbix/4.4/r...el8.noarch.rpm
# dnf clean all
b. Install Zabbix server, frontend, agent
# dnf -y install zabbix-server-mysql zabbix-web-mysql zabbix-apache-conf zabbix-agent
however, when i start with the next step, mysql seems not working. i dont know why, would anyone please help me take a look?
c. Create initial database
# mysql -uroot -p
password
mysql> create database zabbix character set utf8 collate utf8_bin;
mysql> grant all privileges on zabbix.* to zabbix@localhost identified by 'password';
mysql> quit;
when i tried to input above, it comes this to my terminal:
[root@localhost wang]# mysql -uroot -p
bash: mysql: command not found...
Failed to search for file: Cannot update read-only repo
[root@localhost wang]# whereis mysql
mysql: /usr/lib64/mysql /usr/share/mysql
i've just installed zabbix according to the guide:https://www.zabbix.com/download
i have completed:
a. Install Zabbix repository
# rpm -Uvh https://repo.zabbix.com/zabbix/4.4/r...el8.noarch.rpm
# dnf clean all
b. Install Zabbix server, frontend, agent
# dnf -y install zabbix-server-mysql zabbix-web-mysql zabbix-apache-conf zabbix-agent
however, when i start with the next step, mysql seems not working. i dont know why, would anyone please help me take a look?
c. Create initial database
# mysql -uroot -p
password
mysql> create database zabbix character set utf8 collate utf8_bin;
mysql> grant all privileges on zabbix.* to zabbix@localhost identified by 'password';
mysql> quit;
when i tried to input above, it comes this to my terminal:
[root@localhost wang]# mysql -uroot -p
bash: mysql: command not found...
Failed to search for file: Cannot update read-only repo
[root@localhost wang]# whereis mysql
mysql: /usr/lib64/mysql /usr/share/mysql
Comment