elasticsearch 5.6 安装

本文档介绍了Elasticsearch 5.6的安装过程,包括下载、解压、配置以及解决安装中遇到的问题。在安装前需确保已安装Java并配置好环境。遇到启动报错时,可在elasticsearch.yml中设置bootstrap.system_call_filter为false,并调整Linux系统参数。安装完成后,通过访问http://192.168.1.132:9200/进行验证,如需跨域访问还需进行相应配置。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.简介

ElasticSearch是一个基于Lucene的搜索服务器。它提供了一个分布式多用户能力的全文搜索引擎,基于RESTful web接口。Elasticsearch是用Java开发的,

并作为Apache许可条款下的开放源码发布,是当前流行的企业级搜索引擎。设计用于云计算中,能够达到实时搜索,稳定,可靠,快速,安装使用方便。

2.安装

下载:https://www.elastic.co/downloads/elasticsearch

解压及配置:

安装前java必须安装好,环境配置好。

[elk@master ~]$ tar -zvf elasticsearch-5.6.3
[elk@master ~]$ cat  elasticsearch-5.6.3/config/elasticsearch.yml |grep -v "^#" |grep -v "^$"
bootstrap.memory_lock: false
bootstrap.system_call_filter: false
network.host: 192.168.1.132
http.cors.enabled: true  
http.cors.allow-origin: /.*/  

安装报错:

 [2016-11-06T16:27:21,712][WARN ][o.e.b.JNANatives ] unable to install syscall filter: 
java.lang.UnsupportedOperationException: seccomp unavailable: requires kernel 3.5+ with CONFIG_SECCOMP and CONFIG_SECCOMP_FILTER compiled in
at org.elasticsearch.bootstrap.Seccomp.linuxImpl(Seccomp.java:349) ~[elasticsearch-5.0.0.jar:5.0.0]
at org.elasticsearch.bootstrap.Seccomp.init(Seccomp.java:630) ~[elasticsearch-5.0.0.jar:5.0.0]

解决方法:在elasticsearch.yml中配置bootstrap.system_call_filter为false,注意要在Memory下面:
bootstrap.memory_lock: false
bootstrap.system_call_filter: false

此外要配置linux系统相关参数,
参考:http://blog.csdn.net/feifantiyan/article/details/54614614(参数值配置)
https://www.elastic.co/guide/en/elasticsearch/reference/current/system-config.html(相关系统参数配置)
 官方安装指导:https://www.elastic.co/guide/en/elasticsearch/reference/current/_installation.html

3.启动

[elk@master elasticsearch-5.6.3]$ ./bin/elasticsearch
[2017-11-05T17:33:04,130][INFO ][o.e.n.Node               ] [] initializing ...
[2017-11-05T17:33:04,297][INFO ][o.e.e.NodeEnvironment    ] [ljr2cAN] using [1] data paths, mounts [[/ (/dev/sda3)]], net usable_space [15.1gb], net total_space [28.3gb], spins? [possibly], types [ext4]
[2017-11-05T17:33:04,298][INFO ][o.e.e.NodeEnvironment    ] [ljr2cAN] heap size [1.9gb], compressed ordinary object pointers [true]
[2017-11-05T17:33:04,301][INFO ][o.e.n.Node               ] node name [ljr2cAN] derived from node ID [ljr2cANDQnyHLKL4R3dbRw]; set [node.name] to override
[2017-11-05T17:33:04,301][INFO ][o.e.n.Node               ] version[5.6.3], pid[4981], build[1a2f265/2017-10-06T20:33:39.012Z], OS[Linux/2.6.32-504.el6.x86_64/amd64], JVM[Oracle Corporation/Java HotSpot(TM) 64-Bit Server VM/1.8.0_131/25.131-b11]
[2017-11-05T17:33:04,301][INFO ][o.e.n.Node               ] JVM arguments [-Xms2g, -Xmx2g, -XX:+UseConcMarkSweepGC, -XX:CMSInitiatingOccupancyFraction=75, -XX:+UseCMSInitiatingOccupancyOnly, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -Djdk.io.permissionsUseCanonicalPath=true, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Dlog4j.skipJansi=true, -XX:+HeapDumpOnOutOfMemoryError, -Des.path.home=/home/elk/elasticsearch-5.6.3]
[2017-11-05T17:33:05,752][INFO ][o.e.p.PluginsService     ] [ljr2cAN] loaded module [aggs-matrix-stats]
[2017-11-05T17:33:05,752][INFO ][o.e.p.PluginsService     ] [ljr2cAN] loaded module [ingest-common]
[2017-11-05T17:33:05,752][INFO ][o.e.p.PluginsService     ] [ljr2cAN] loaded module [lang-expression]
[2017-11-05T17:33:05,753][INFO ][o.e.p.PluginsService     ] [ljr2cAN] loaded module [lang-groovy]
[2017-11-05T17:33:05,753][INFO ][o.e.p.PluginsService     ] [ljr2cAN] loaded module [lang-mustache]
[2017-11-05T17:33:05,753][INFO ][o.e.p.PluginsService     ] [ljr2cAN] loaded module [lang-painless]
[2017-11-05T17:33:05,753][INFO ][o.e.p.PluginsService     ] [ljr2cAN] loaded module [parent-join]
[2017-11-05T17:33:05,753][INFO ][o.e.p.PluginsService     ] [ljr2cAN] loaded module [percolator]
[2017-11-05T17:33:05,753][INFO ][o.e.p.PluginsService     ] [ljr2cAN] loaded module [reindex]
[2017-11-05T17:33:05,753][INFO ][o.e.p.PluginsService     ] [ljr2cAN] loaded module [transport-netty3]
[2017-11-05T17:33:05,753][INFO ][o.e.p.PluginsService     ] [ljr2cAN] loaded module [transport-netty4]
[2017-11-05T17:33:05,758][INFO ][o.e.p.PluginsService     ] [ljr2cAN] no plugins loaded
[2017-11-05T17:33:08,372][INFO ][o.e.d.DiscoveryModule    ] [ljr2cAN] using discovery type [zen]
[2017-11-05T17:33:09,314][INFO ][o.e.n.Node               ] initialized
[2017-11-05T17:33:09,320][INFO ][o.e.n.Node               ] [ljr2cAN] starting ...
[2017-11-05T17:33:09,596][INFO ][o.e.t.TransportService   ] [ljr2cAN] publish_address {192.168.1.132:9300}, bound_addresses {192.168.1.132:9300}
[2017-11-05T17:33:09,616][INFO ][o.e.b.BootstrapChecks    ] [ljr2cAN] bound or publishing to a non-loopback or non-link-local address, enforcing bootstrap checks
[2017-11-05T17:33:12,733][INFO ][o.e.c.s.ClusterService   ] [ljr2cAN] new_master {ljr2cAN}{ljr2cANDQnyHLKL4R3dbRw}{w0ySJ0X2T1K40OdDfUtgeQ}{192.168.1.132}{192.168.1.132:9300}, reason: zen-disco-elected-as-master ([0] nodes joined)
[2017-11-05T17:33:12,778][INFO ][o.e.h.n.Netty4HttpServerTransport] [ljr2cAN] publish_address {192.168.1.132:9200}, bound_addresses {192.168.1.132:9200}
[2017-11-05T17:33:12,778][INFO ][o.e.n.Node               ] [ljr2cAN] started
[2017-11-05T17:33:12,789][INFO ][o.e.g.GatewayService     ] [ljr2cAN] recovered [0] indices into cluster_state
[2017-11-05T17:34:48,303][INFO ][o.e.c.m.MetaDataCreateIndexService] [ljr2cAN] [.kibana] creating index, cause [api], templates [], shards [1]/[1], mappings [_default_, index-pattern, server, visualization, search, timelion-sheet, config, dashboard, url]

后台启动加上 -d 参数即可:

[elk@master elasticsearch-5.6.3]$  ./bin/elasticsearch -d
[elk@master elasticsearch-5.6.3]$ jps
5221 Elasticsearch
5237 Jps
[elk@master elasticsearch-5.6.3]$ 


4.验证 

 登录 http://192.168.1.132:9200/  如果访问不了,后台没有报错,请设置跨域访问,看上面配置:


5.问题记录

ERROR: [1] bootstrap checks failed
[1]: max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]
解决:
[elk@test6 bin]$ vi /etc/security/limits.conf   #添加以下参数
* soft nofile 65536

* hard nofile 131072

* soft nproc 2048

* hard nproc 4096

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值