PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

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

原创
2016-06-07 17:51:22 1760浏览

文章介绍了关于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

反正我是这样解决了问题

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。