elasticsearch安装及启动异常解决

本文涉及的产品
检索分析服务 Elasticsearch 版,2核4GB开发者规格 1个月
简介: elasticsearch安装及启动异常解决

虚拟机使用net连接模式

1

Download and unzip the latest Elasticsearch distribution

2

Run bin/elasticsearch on Unix or bin\elasticsearch.bat on Windows

3

Run curl -X GET http://localhost:9200/

官网 :www.elastic.co

包含 安装介质 和 权威指南

1下载

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

linux  对应版本 elasticsearch-7.0.0-rc2-linux-x86_64.tar.gz 大小330 MB

2建用户

useradd  es

passwd es

123456

es/123456

3上传到虚拟机

put elasticsearch-7.0.0-rc2-linux-x86_64.tar.gz

4解压

tar  -zxvf elasticsearch-7.0.0-rc2-linux-x86_64.tar.gz

启动

cd elasticsearch-7.0.0-rc2/bin

./elasticsearch

5警告跳过

unable to install syscall filter:

java.lang.UnsupportedOperationException: seccomp unavailable: requires kernel 3.5+ with CONFIG_SECCOMP and CONFIG_SECCOMP_FILTER compiled in

6检验

http://localhost:9200/

{

 "name" : "localhost.localdomain",

 "cluster_name" : "elasticsearch",

 "cluster_uuid" : "WuVD9aKLTYyt_XbWbxZxAg",

 "version" : {

   "number" : "7.0.0-rc2",

   "build_flavor" : "default",

   "build_type" : "tar",

   "build_hash" : "f076a79",

   "build_date" : "2019-04-02T17:20:40.380908Z",

   "build_snapshot" : false,

   "lucene_version" : "8.0.0",

  "minimum_wire_compatibility_version" : "6.7.0",

  "minimum_index_compatibility_version" : "6.0.0-beta1"

 },

 "tagline" : "You Know, for Search"

}

遇到得问题

7 http://ip:9200/  无法访问

vim config/elasticsearch.yml

# 增加

network.host: 0.0.0.0

8重启 es 异常

ERROR: [5] bootstrap checks failed

[1]: max file descriptors [4096] for elasticsearch process is too low, increase to at least [65535]

[2]: max number of threads [1024] for user [es] is too low, increase to at least [4096]

[3]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]

[4]:  failed to install; check the logs and fix your configuration or disable system call filters at your own risk

[5]: the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured

[2019-04-09T09:51:29,228][INFO ][o.e.n.Node            ] [localhost.localdomain] stopping ...

[2019-04-09T09:51:29,264][INFO ][o.e.n.Node            ] [localhost.localdomain] stopped

[2019-04-09T09:51:29,265][INFO ][o.e.n.Node            ] [localhost.localdomain] closing ...

[2019-04-09T09:51:29,320][INFO ][o.e.n.Node            ] [localhost.localdomain] closed

[2019-04-09T09:51:29,323][INFO ][o.e.x.m.p.NativeController] [localhost.localdomain] Native controller process has stopped - no new native processes can be started

切换root用户

vi /etc/security/limits.conf

在倒数第二行

* soft nofile 65536

* hard nofile 65536

# End of file

vi /etc/sysctl.conf

添加

vm.max_map_count=655360

保存后执行

sysctl -p

重启es 异常

ERROR: [3] bootstrap checks failed

[1]: max number of threads [1024] for user [es] is too low, increase to at least [4096]

[2]: system call filters failed to install; check the logs and fix your configuration or disable system call filters at your own risk

[3]: the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured

vi /etc/security/limits.d/90-nproc.conf

修改

*         soft   nproc    1024

*         soft   nproc    4096

重启es 异常

ERROR: [2] bootstrap checks failed

[1]: system call filters failed to install; check the logs and fix your configuration or disable system call filters at your own risk

[2]: the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured

在 elasticsearch.yml中添加配置项:bootstrap.system_call_filter为false:

bootstrap.memory_lock: false

bootstrap.system_call_filter: false

重启es 异常

ERROR: [1] bootstrap checks failed

[1]: the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured

修改

elasticsearch.yml

取消注释保留一个节点

cluster.initial_master_nodes: ["node-1"]

这个的话,这里的node-1是上面一个默认的记得打开就可以了

重启 正常

相关实践学习
使用阿里云Elasticsearch体验信息检索加速
通过创建登录阿里云Elasticsearch集群,使用DataWorks将MySQL数据同步至Elasticsearch,体验多条件检索效果,简单展示数据同步和信息检索加速的过程和操作。
ElasticSearch 入门精讲
ElasticSearch是一个开源的、基于Lucene的、分布式、高扩展、高实时的搜索与数据分析引擎。根据DB-Engines的排名显示,Elasticsearch是最受欢迎的企业搜索引擎,其次是Apache Solr(也是基于Lucene)。 ElasticSearch的实现原理主要分为以下几个步骤: 用户将数据提交到Elastic Search 数据库中 通过分词控制器去将对应的语句分词,将其权重和分词结果一并存入数据 当用户搜索数据时候,再根据权重将结果排名、打分 将返回结果呈现给用户 Elasticsearch可以用于搜索各种文档。它提供可扩展的搜索,具有接近实时的搜索,并支持多租户。
相关文章
|
2月前
|
安全 索引
elasticsearch异常问题
elasticsearch异常问题
31 0
|
1天前
|
数据可视化 Docker 容器
一文教会你如何通过Docker安装elasticsearch和kibana 【详细过程+图解】
这篇文章提供了通过Docker安装Elasticsearch和Kibana的详细过程和图解,包括下载镜像、创建和启动容器、处理可能遇到的启动失败情况(如权限不足和配置文件错误)、测试Elasticsearch和Kibana的连接,以及解决空间不足的问题。文章还特别指出了配置文件中空格的重要性以及环境变量中字母大小写的问题。
一文教会你如何通过Docker安装elasticsearch和kibana 【详细过程+图解】
|
1天前
|
JSON 自然语言处理 数据库
Elasticsearch从入门到项目部署 安装 分词器 索引库操作
这篇文章详细介绍了Elasticsearch的基本概念、倒排索引原理、安装部署、IK分词器的使用,以及如何在Elasticsearch中进行索引库的CRUD操作,旨在帮助读者从入门到项目部署全面掌握Elasticsearch的使用。
10 0
|
5天前
|
Ubuntu Oracle Java
如何在 Ubuntu VPS 上安装 Elasticsearch
如何在 Ubuntu VPS 上安装 Elasticsearch
8 0
|
5天前
|
存储 Ubuntu Oracle
在Ubuntu 14.04上安装和配置Elasticsearch的方法
在Ubuntu 14.04上安装和配置Elasticsearch的方法
11 0
|
5天前
|
存储 安全 Java
在CentOS 7上安装和配置Elasticsearch的方法
在CentOS 7上安装和配置Elasticsearch的方法
22 0
|
5天前
|
自然语言处理 Docker 容器
ElasticSearch 实现分词全文检索 - ES、Kibana、IK分词器安装
ElasticSearch 实现分词全文检索 - ES、Kibana、IK分词器安装
10 0
|
8天前
|
Linux Docker 容器
Docker 安装 Elasticsearch、Kibana
Docker 安装 Elasticsearch、Kibana
9 0
|
9天前
|
Docker 容器
Docker 安装 ElasticSearch
Docker 安装 ElasticSearch
16 0
|
11天前
|
运维 安全 网络协议
运维.索引引擎ElasticSearch.记录一个小异常:received plaintext http traffic on an https channel
运维.索引引擎ElasticSearch.记录一个小异常:received plaintext http traffic on an https channel
28 0