linux 安装mysql8.0+ 不区分大小写 ‘xxx‘ does not exist

问题情景
在使用linux系统安装mysql8.0+的时候,数据库表找不到的问题。下结论是mysql区分大小写导致的问题。
lower_case_table_names 参数
简单来说就是,linux默认是0,windows默认是1,mac是2。
0是区分大小写的,1是不区分的,也就是windows是默认不区分大小写的。
问题解决
我翻阅了大量资料,都是说在配置文件配置lower_case_table_names=1,重启服务可以解决问题。
后来经过我查阅mysql官方文档资料发现:该解决方案只能在5.6/5.7低版本的mysql中有效。
但是在8.0版本下是行不通的,就算怎么做lower_case_table_names变量也没有得到更新。
官方mysql8.0版本新增的一条说明

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.

也就是说在8.0版本,你的mysql已经初始化过就不支持修改lower_case_table_names参数了!!
如果你的是8版本这边建议你直接重装。

在my.cnf(可能名字不同)文件中添加lower_case_table_names=1

安装教程:https://blog.csdn.net/qq_37598011/article/details/93489404
重装教程:https://blog.csdn.net/qq_38570633/article/details/109251291
《重装时记得更改my.cnf文件》

你可能感兴趣的:(笔记,linux,mysql,运维)