linux系统git clone 报错误 Peer reports incompatible or unsupported protocol version. 升级curl yum update -y nss curl libcurl ...
分类:
其他好文 时间:
2020-02-23 10:01:16
阅读次数:
73
********************************************************** Spring MVC found on classpath, which is incompatible with Spring Cloud Gateway at this time ...
分类:
其他好文 时间:
2020-02-09 20:20:52
阅读次数:
103
使用kafka和sparkstreaming整合时,IDEA运行程序报错"com.fasterxml.jackson.databind.JsonMappingException: Incompatible Jackson version: 2.9.1",初步看是版本不兼容,但是版本后面确认没有问题, ...
分类:
移动开发 时间:
2020-01-05 09:29:41
阅读次数:
291
1 概述 解决hadoop启动hdfs时,datanode无法启动的问题。错误为: 2 问题描述 执行start-dfs.sh后,根据打印日志,可以看到分别执行了NameNode、DataNode的操作。 但是执行jps查看启动结果时,返现DataNode并没有启动。 3 查找问题 很是费解,刚刚还 ...
分类:
编程语言 时间:
2019-12-19 21:14:13
阅读次数:
131
今天在测试服务器上突然出现了这么一个MySQL的问题,同样的代码正式服没有问题,那肯定就是出在了配置上,查了一下原因才明白原来是数据库版本为5.7以上的版本, 默认是开启了 only_full_group_by 模式的,但开启这个模式后,原先的 group by 语句就报错, 查询MySQL版本可以 ...
分类:
数据库 时间:
2019-12-11 19:12:11
阅读次数:
155
解析:在mysql 工具 搜索或者插入数据时报下面错误: ERROR 1055 (42000): Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'database_tl ...
分类:
数据库 时间:
2019-12-11 13:01:34
阅读次数:
76
When shipping goods with containers, we have to be careful not to pack some incompatible goods into the same container, or we might get ourselves in s ...
分类:
其他好文 时间:
2019-11-24 00:15:37
阅读次数:
123
# 临时解决:重启完数据库会失效 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_SUBS ...
分类:
数据库 时间:
2019-11-21 14:12:12
阅读次数:
67
【问题】mysql从5.6升级到5.7后出现:插入数据和修改数据时出错Caused by: com.ibatis.common.jdbc.exception.NestedSQLException: The error occurred while applying a parameter map. ...
分类:
数据库 时间:
2019-10-29 13:44:25
阅读次数:
102
由于Mysql自动开启了 only_full_group_by,所以若查询的字段不在group by里面,则分组报错。 解决办法其一:mysql配置,关闭only_full_group_by,这种办法自行百度 下面说第二种办法: 除去group_by 以外的参数加上any_value(*) 如:SE ...
分类:
数据库 时间:
2019-10-22 15:24:59
阅读次数:
176