bs"d
Hi guys,
I created a new Zabbix server (version 6) and imported the DB from my old server Zabbix 4.
The steps I performed are:
Also these two options
"Database history tables upgraded" and "Database history tables use primary key" set as NO.
Thanks a lot!
Hi guys,
I created a new Zabbix server (version 6) and imported the DB from my old server Zabbix 4.
The steps I performed are:
- Export the DB from the old server
- mysqldump -u zabbix -p zabbix > /tmp/zabbix_db_dump
- After installing the new server, I created the DB with these commands.
- mysql -uroot -p"thepasswd"
- create database zabbix;
- create user 'zabbix'@'localhost' identified by 'PASSWORD';
- use zabbix;
- grant all privileges on zabbix.* to 'zabbix'@'localhost';
- Import the DB to the new server
- mysql -u zabbix -p zabbix < zabbix_db_dump
Code:
Unsupported charset or collation for tables: lld_override_optag, service_problem_tag, lld_override_ophistory, auditlog, role, sla_service_tag, lld_override_operation, config_autoreg_tls, sla_excluded_downtime, host_inventory, sysmaps_element_tag, media_type_param, token, item_parameter, report_param, httptest_tag, item_tag, role_rule, valuemap_mapping, lld_override_opperiod, task_data, ha_node, service_tag, item_rtdata, lld_override_optrends, report, maintenance_tag, sla, media_type_message, interface_snmp, lld_override, valuemap, lld_override_condition, dashboard_page, task_result, script_param, lld_macro_path, host_tag, module.
Thanks a lot!
Comment