使用ElasticSearch 报错 java.lang.IllegalStateException: Received message from unsupported version

使用ElasticSearch启动时报错:
表示从不支持的版本接收到的消息:[5.2.2]最小兼容版本是:[5.6.0]

java.lang.IllegalStateException: Received message from unsupported version: [5.2.2] minimal compatible version is: [5.6.0]

解决方法:
pom.xml中修改SpringBoot版本号

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.3.6.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

版权声明:本文为qingyuan2014原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。