Show pageBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Zabbix ====== ===== Installation ===== ==== MySQL ==== <code> shell> mysql -uroot -p<root_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; </code> ===== DB creation ===== <code bash> cd /usr/share/zabbix-server-mysql/ zcat scheme.sql.gz | mysql -uzabbix -pppassword zabbix zcat images.sql.gz | mysql -uzabbix -pppassword zabbix zcat data.sql.gz | mysql -uzabbix -pppassword zabbix </code> Last modified: 2024-07-05 14:31