ElasticSearch升级版本
背景:es 旧版本有 log4j 漏洞,需要进行升级处理,因为是使用 yum 安装的,升级也比较简单,这里记录一下,这里选择的版本是 7.16.2
更新日志: https://www.elastic.co/guide/en/elasticsearch/reference/7.17/release-notes-7.16.2.html
首先下载安装包
阿里云镜像地址:https://mirrors.aliyun.com/elasticstack/7.x/yum/7.16.2/
腾讯云镜像地址:https://mirrors.cloud.tencent.com/elasticstack/7.x/yum/7.16.2/
安装
1 | rpm -Uvh ./elasticsearch-7.16.2-x86_64.rpm |
重新启动
1 | systemctl daemon-reload |
常见错误
java.lang.IllegalStateException: codebase property already set: codebase.jackson-annotations -> file:/usr/share/elasticsearch/modules/ingest-geoip/jackson-annotations-2.12.2.jar, cannot set to file:/usr/share/elasticsearch/modules/ingest-geoip/jackson-annotations-2.10.4.jar
这种情况是由于版本相差较大造成的。已经加载了一个版本的包,不能再加载另一个版本的包。
安装时的提示:
1 | [root@l7---es-3 ~]# rpm -Uvh ./elasticsearch-7.16.2-x86_64.rpm |
这里很明显是安装的时候安装脚本会移除旧的 jar 包,但是没有找到这个文件
解决方案:
cd /usr/share/elasticsearch/modules/ingest-geoip/
删除旧版本的 jar 包
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 杂烩饭!
评论