当前位置:网站首页>Different lower_case_table_names settings for server ('1') and data dictionary ('0') solution
Different lower_case_table_names settings for server ('1') and data dictionary ('0') solution
2022-07-31 11:36:00 【m0_67392409】
Problem Scenario
When using the Lowy framework, the database table cannot be found.The conclusion is that mysql is case sensitive.
lower_case_table_names parameter
The official original words, simply put, the default for unix is 0, the default for windows is 1, and the default for mac is 2.
0 is case-sensitive, 1 is insensitive, that is, Windows is case-insensitive by default.
On Unix, the default value of lower_case_table_names is 0. On Windows, the default value is 1. On macOS, the default value is 2.
Problem Resolution
I read a lot of information, all of which said that configuring lower_case_table_names=1 in the configuration file, restarting the service can solve the problem.
Later, after I checked the official mysql documentation, I found that this solution is only valid in mysql with versions lower than 5.6/5.7.
But it doesn't work under version 8.0, even how to do lower_case_table_names variable has not been updated.
A new note added to the official mysql8.0 version
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.
Translation:
LOWER_CASE_TABLE_NAMES can only be configured when initializing the server.Disallow changing the LOWER_CASE_TABLE_NAMES setting after server initialization.
In other words, in version 8.0, your mysql has been initialized and does not support modifying the lower_case_table_names parameter!!
If you are on version 8, it is recommended that you reinstall directly.
Add lower_case_table_names=1 to my.cnf (maybe different names) file
You need to specify the lower_case_table_names=1 parameter during initialization
This is the most reliable reinstallation tutorial I found: https://blog.csdn.net/qq_37598011/article/details/93489404
Let me introduce myself first. The editor graduated from Shanghai Jiaotong University in 2013. I worked in a small company and went to big factories such as Huawei and OPPO. I joined Alibaba in 2018, until now.I know that most junior and intermediate java engineers want to upgrade their skills, they often need to explore their own growth or sign up to study, but for training institutions, the tuition fee is nearly 10,000 yuan, which is really stressful.Self-learning that is not systematic is very inefficient and lengthy, and it is easy to hit the ceiling and the technology stops.Therefore, I collected a "full set of learning materials for java development" for everyone. The original intention is also very simple. I hope to help friends who want to learn by themselves but don't know where to start, and at the same time reduce everyone's burden.Add the business card below to get a full set of learning materials
边栏推荐
- MySQL 行级锁(行锁、临键锁、间隙锁)
- 第十二章 使用中的 OpenAPI 属性
- oracle优化:instr做join条件很慢「建议收藏」
- IDEA 配置方法注释自动参数
- [Virtualization Ecological Platform] Platform Architecture Diagram & Ideas and Implementation Details
- MySQL 的几种碎片整理方案总结(解决delete大量数据后空间不释放的问题)
- Find a Go job in 7 days, Conditional statements to learn in Gopher, loop statements, Part 3
- 生信周刊第38期
- 无法将“node.exe”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。
- MySQL row-level locks (row locks, adjacent key locks, gap locks)
猜你喜欢
随机推荐
lotus-local-net 2k v1.17.0-rc4
瑞吉外卖项目:文件的上传与下载
Docker build Mysql master-slave replication
Yarn安装配置(vsftpd安装配置)
[Virtualization Ecological Platform] Platform Architecture Diagram & Ideas and Implementation Details
淀粉与纤维素
关于Mysql数据库的介绍
DCM 中间件家族迎来新成员
学习笔记 Golang 写入文件(io.WriteString、ioutil.WriteFile、file.Write、write.WriteString)
第十二章 使用中的 OpenAPI 属性
分布式事务Seata详细使用教程
【虚拟化生态平台】平台架构图&思路和实现细节
Unix知识:shell详细解读
[Part 1 of Cloud Native Monitoring Series] A detailed explanation of Prometheus monitoring system
分布式事务——分布式事务简介、分布式事务框架 Seata(AT模式、Tcc模式、Tcc Vs AT)、分布式事务—MQ
若枚举映射的值不存在,则不进行反序列化
台达PLC出现通信错误或通信超时或下载时提示机种不符的解决办法总结
LeetCode 1161.最大层内元素和:层序遍历
502 bad gateway原因、解决方法
面试、工作中常用sql大全(建议收藏备用)