trying to change charset+collations, but I get the following error. Specified key was too long; max key length is 3072 bytes
refs:
https://www.zabbix.com/documentation...b_charset_coll
Code:
SELECT @@VERSION; +-----------+ | @@VERSION | +-----------+ | 8.0.29 | +-----------+ 1 row in set (0.00 sec) mysql> use zabbixdb; Database changed mysql> SELECT @@character_set_database, @@collation_database; +--------------------------+----------------------+ | @@character_set_database | @@collation_database | +--------------------------+----------------------+ | utf8mb4 | utf8mb4_bin | +--------------------------+----------------------+ 1 row in set (0.00 sec) mysql> CALL zbx_convert_utf8(); ERROR 1071 (42000): Specified key was too long; max key length is 3072 bytes mysql>
https://www.zabbix.com/documentation...b_charset_coll
Comment