码迷,mamicode.com
首页 > 数据库 > 详细

sql_mode=ONLY_FULL_GROUP_BY 导致lepus监控mysql5.7报错

时间:2017-09-12 23:15:05      阅读:628      评论:0      收藏:0      [点我收藏+]

标签:sql   mode   only   

lepus监控mysql5.7出现的问题:

2017-09-12 12:18:53 [INFO] check mysql controller finished.

 [WARNING] check mysql 192.168.10.9:3306 failure: 1055 Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column ‘information_schema.processlist.USER‘ which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

2017-09-12 12:18:48 [WARNING] check mysql  192.168.10.9:3306 failure: sleep 3 seconds and check again.

2017-09-12 12:18:49 [WARNING] check mysql  192.168.10.8:3306 failure: 1055 Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column ‘information_schema.processlist.USER‘ which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

2017-09-12 12:18:49 [WARNING] check mysql 192.168.10.8:3306 failure: sleep 3 seconds and check again.

2017-09-12 12:18:53 [INFO] check mysql controller finished.


登陆192.168.10.9机器和192.168.10.8机器查看mysql5.7的sql_mode默认的模式为:

mysql> SELECT @@GLOBAL.sql_mode;

+-------------------------------------------------------------------------------------------------------------------------------------------+

| @@GLOBAL.sql_mode                                                                                                                         |

+-------------------------------------------------------------------------------------------------------------------------------------------+

| ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION |

+-------------------------------------------------------------------------------------------------------------------------------------------+

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‘


这样mysql不需要重启


或者是写入my.cnf

[mysqld]

sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION


重启mysql5.7解决

本文出自 “10931853” 博客,请务必保留此出处http://wujianwei.blog.51cto.com/10931853/1964613

sql_mode=ONLY_FULL_GROUP_BY 导致lepus监控mysql5.7报错

标签:sql   mode   only   

原文地址:http://wujianwei.blog.51cto.com/10931853/1964613

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!