I'm following the instructions here to install Zabbix fresh on Centos7 with MySQL and it's failing at the d. Create initial database step.
I can create the table fine, but running this command results in an error:
I've researched this and it appears to be an issue with UTF8 limits - a forum post suggested doing this:
This got a bit further, but now we're presented with the following error instead:
Rather than mess around with it any more, I thought it would be best to raise the issue here - any thoughts on how to get this fixed?
I can create the table fine, but running this command results in an error:
Code:
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix Enter password: ERROR 1071 (42000) at line 348: Specified key was too long; max key length is 767 bytes
Code:
SET @@global.innodb_large_prefix = 1;
Code:
ERROR 1709 (HY000) at line 348: Index column size too large. The maximum column size is 767 bytes.
Code:
MYSQL: mysql Ver 14.14 Distrib 5.6.48, for Linux (x86_64) using EditLine wrapper CENTOS: Linux version 3.10.0-1127.8.2.el7.x86_64 ([email protected]) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) ) #1 SMP Tue May 12 16:57:42 UTC 2020
Comment