使用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>
©本文为原创文章,著作权归博主所有,转载请联系博主获得授权

发表评论