安装
在官网上下载:mysql80-community-release-el7-2.noarch.rpm。安装方式与5.7没有任何区别。详细见:CentOS7下安装MYSQL5.7。
设置忽略大小写
mysql安装完在启动前修改/etc/my.cnf文件,添加配置:lower_case_table_names=1
查看是否忽略大小写。
注意:官网上明确指出mysql8.x只有在初始化时才能设置忽略大小写。地址:https://dev.mysql.com/doc/refman/8.0/en/identifier-case-sensitivity.html。
lower_case_table_names can only be configured when initializing the server. Changing the lower_case_table_names setting after the server is initialized is prohibited.
原文:https://www.cnblogs.com/zhi-leaf/p/10533439.html