linux centos7 搭建elasticsearch

1.去官网下载最新版本的elasticsearch

  •    下载地址https://www.elastic.co/cn/downloads/elasticsearch

  •      我的是7.8.0的  linux centos7 搭建elasticsearch_第1张图片

 

2.安装elasticserach

  •        将下载的文件上传的自己的服务器上,并解压

       tar -zxvf elasticsearch-7.8.0-linux-x86_64.tar.gz

  • 进入config目录开启远程访问,修改文件elasticsearch.yml,找到network.host将注释去掉改为0.0.0.0

       

  • 需要禁用机器学习功能,在elasticsearch.yml配置文件中加入xpack.ml.enabled: false

     linux centos7 搭建elasticsearch_第2张图片

  •    先直接进入bin目录 ./elasticsearch 直接启动,若启动未成功,会提示让你进入logs/查看elasticsearch.log文件查看错误

  1. 第一个错误解决方式

      

原因:
这是在因为Centos7不支持SecComp,而ES5.2.0默认bootstrap.system_call_filter为true进行检测,所以导致检测失败,失败后直接导致ES不能启动。
解决:
在elasticsearch.yml中配置bootstrap.system_call_filter为false,注意要在Memory下面:
bootstrap.memory_lock: false
bootstrap.system_call_filter: false

linux centos7 搭建elasticsearch_第3张图片

 2.第二个错误

ip替换host1等,多节点请添加多个ip地址,单节点可写按默认来
#配置以下三者,最少其一
#[discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes]
cluster.initial_master_nodes: ["node-1"] #这里的node-1为node-name配置的值

 linux centos7 搭建elasticsearch_第4张图片

启动项目 ./elasticsearch  -d,访问路径启动成功

linux centos7 搭建elasticsearch_第5张图片

你可能感兴趣的:(java,elasticsearch,elasticsearch,java,linux,es)