欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

mysql [Warning] max_join_size报错问题解决办法

程序员文章站 2022-03-26 16:16:17
...

文章介绍了关于mysql [Warning] max_join_size报错问题解决办法,有需要的同学看看。

100716 06:32:45 d started
100716 6:32:45 [Warning] option 'max_join_size': unsigned value 18446744073709551615 adjusted to 4294967295
100716 6:32:45 [Warning] option 'max_join_size': unsigned value 18446744073709551615 adjusted to 4294967295
InnoDB: The log sequence number in ibdata files does not match
InnoDB: the log sequence number in the ib_logfiles!
100716 6:32:45 InnoDB: Database was not shut down normally!
InnoDB: Starting crash recovery.
InnoDB: Reading tablespace information from the .ibd files...
100716 06:36:23 mysqld ended


服务器上mysql 启动,报错不能启动,如上面日志

解决办法
etc下的my.cnf配置文件里添加上

代码如下 复制代码
max_join_size=4294967295

反正我是这样解决了问题

相关标签: mysql max_join_size