n 安装JDK是由于ElasticSearch是由Java语言编写的
n 注意事项:ES非常占内存,默认启动占1G,可修改为512m
简介:ElasticSearch是一个基于Lucene的搜索服务器。它提供了一个分布式多用户能力的全文搜索引擎,基于RESTful web接口。Elasticsearch是用Java开发的,并作为Apache许可条款下的开放源码发布,是当前流行的企业级搜索引擎。设计用于云计算中,能够达到实时搜索,稳定,可靠,快速,安装使用方便。
tar –zxvf elasticsearch-7.0.1-linux-x86_64.tar.gz
mkdir /usr/elasticsearch
mv elasticsearch-7.0.1 /usr/elasticsearch
chown –R didi-liu /usr/elasticsearch 和 chgrp –R didi-liu /usr/elasticsearch
vi elasticsearch.yml
配置入下图
max file descriptors [4096] for elasticsearch process likely too low, increase to at least [65536]
max number of threads [1024] for user [lishang] likely too low, increase to at least [2048]
max number of threads [1024] for user [lish] likely too low, increase to at least [2048]
* soft nofile 65536
* hard nofile 131072
* soft nproc 2048
* hard nproc 4096
vm.max_map_count=655360
sysctl -p
ERROR: bootstrap checks failed
system call filters failed to install; check the logs and fix your configuration or disable system call filters at your own risk
解决方法:
在elasticsearch.yml中配置bootstrap.system_call_filter为false,注意要在Memory下面:
bootstrap.memory_lock: false
bootstrap.system_call_filter: false
解决以上错误需关闭防火墙,才可访问到对应端口(service iptable stop),并重启
[rest.suppressed ] /_cat/health Params: {h=node.total}MasterNotDiscoveredException[waited for [30s]]
解决方法:这个报错可能是因为主机名未改成配置的节点名(我这里把主机名改为:node-1)
切换到elasticsearch的bin目录下,执行
./elasticsearch
启动完成且成功截图(没有在一直跳日志)
简介:ElasticSearch是一个基于Lucene的搜索服务器。它提供了一个分布式多用户能力的全文搜索引擎,基于RESTful web接口。Elasticsearch是用Java开发的,并作为Apache许可条款下的开放源码发布,是当前流行的企业级搜索引擎。设计用于云计算中,能够达到实时搜索,稳定,可靠,快速,安装使用方便。
Kibana相对于elasticsearch来说简单许多。只需要修改Kibana中间配置即可
tar –zxvf kibana-7.0.1-linux-x86_64.tar.gz
chown –R didi-liu kibana-7.0.1-linux-x86_64 和 chgrp –R didi-liu kibana-7.0.1-linux-x86_64
vi kibana.yml
配置文件如下:
修改后,:wq 保存并退出
切换到kibana的bin目录下,执行
./ kibana
启动完成且成功截图(监听启动[listening]/所有启动项都显示Status changed from yellow to green - Ready)
原文:https://www.cnblogs.com/luizw/p/12780820.html