安装
在官网上下载:mysql80-community-release-el7-2.noarch.rpm。安装方式与5.7基本相同。详细安装过程见:CentOS下安装mysql5.7和mysql8.x。
设置忽略大小写
mysql安装完在启动前修改/etc/my.cnf文件,添加配置:lower_case_table_names=1
查看是否忽略大小写。
show variables like '%lower_case%'
注意:官网上明确指出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.