修改mysql最大连接数:

show variables like "max_connections";
set GLOBAL max_connections = 170;

2、分组查询异常:this is incompatible with sql_mode=only_full_group_by

解决方法:

set global sql_mode='STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';
set session sql_mode='STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';

posted on 2019-08-17 15:23  micas  阅读(140)  评论(0编辑  收藏  举报