Elasticsearch 5.0

使用ES的基本都会使用过head,但是版本升级到5.0后,head插件就不好使了。下面就看看如何在5.0中启动Head插件吧!

官方粗略教程

Running with built in server

enable cors by adding http.cors.enabled: true in elasticsearch configuration. Don’t forget to also set http.cors.allow-origin because no origin allowed by default. http.cors.allow-origin: "*" is valid value, however it’s considered as a security risk as your cluster is open to cross origin from anywhere.

Check Elasticsearch documentation on this parameter:

git clone git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head
npm install
grunt server

open http://localhost:9100/
This will start a local webserver running on port 9100 serving elasticsearch-head

Best option if you are likely to connect to several different clusters

部署5.0版本的ES

5.0版本的ES跟之前的版本最大的不同之处就是多了很多环境的校验,比如jdk,max-files等等。

设置内核参数

vi /etc/sysctl.conf
# 增加下面的内容
fs.file-max=65536
vm.max_map_count=262144

设置资源参数

vi /etc/security/limits.conf
# 修改
* soft nofile 32768
* hard nofile 65536

修改elasticsearch的参数

修改一下es使用的参数:

# 换个集群的名字,免得跟别人的集群混在一起
cluster.name: es-5.0-test

# 换个节点名字
node.name: node-101

# 修改一下ES的监听地址,这样别的机器也可以访问
network.host: 0.0.0.0

# 默认的就好
http.port: 9200

# 增加新的参数,这样head插件可以访问es
http.cors.enabled: true
http.cors.allow-origin: "*"

注意,设置参数的时候:后面要有空格!

安装部署head

第一步,安装git

需要从github上面下载代码,因此先要安装git

yum -y install git

安装完成后,就可以直接下载代码了:

git clone git://github.com/mobz/elasticsearch-head.git

下载后,修改下777权限(简单粗暴),因为是独立启动head的,所以随便放一个位置就行了,参考:

/usr/elk/head/*****

第二步,安装node

由于head插件本质上还是一个nodejs的工程,因此需要安装node,使用npm来安装依赖的包。(npm可以理解为maven)

去官网下载nodejs,https://nodejs.org/en/download/

下载下来的jar包是xz格式的,一般的linux可能不识别,还需要安装xz.

yum -y install xz

然后解压nodejs的安装包:

xz -d node*.tar.xz
tar -xvf node*.tar

解压完node的安装文件后,需要配置下环境变量,编辑/etc/profile,添加

# set node environment
export NODE_HOME=/usr/elk/node-v6.9.1-linux-x64
export PATH=$PATH:$NODE_HOME/bin

别忘记立即执行以下

source /etc/profile

这个时候可以测试一下node是否生效:

[[email protected] node-v6.9.1-linux-x64]# echo $NODE_HOME
/usr/elk/node-v6.9.1-linux-x64
[[email protected] node-v6.9.1-linux-x64]# node -v
v6.9.1
[[email protected] node-v6.9.1-linux-x64]# npm -v
3.10.8

第三步,安装grunt

grunt是一个很方便的构建工具,可以进行打包压缩、测试、执行等等的工作,5.0里的head插件就是通过grunt启动的。因此需要安装一下grunt:

npm install grunt-cli

安装完成后检查一下:

[[email protected] elasticsearch-head]# grunt -version
grunt-cli v1.2.0
grunt v0.4.5

第四步,修改head源码

由于head的代码还是2.6版本的,直接执行有很多限制,比如无法跨机器访问。因此需要用户修改两个地方:

修改服务器监听地址

目录:head/Gruntfile.js

connect: {
    server: {
        options: {
            port: 9100,
            hostname: ‘*‘,
            base: ‘.‘,
            keepalive: true
        }
    }
}

增加hostname属性,设置为*

修改连接地址:

目录:head/_site/app.js

修改head的连接地址:

this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://localhost:9200";

把localhost修改成你es的服务器地址,如:

this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://10.10.10.10:9200";

第五步,运行head

首先开启5.0 ES。

然后在head目录中,执行npm install 下载以来的包:

npm install 

最后,启动nodejs

grunt server

访问:target:9100

这个时候,访问http://xxx:9100就可以访问head插件了.

参考

head官方文档

分类: Elasticsearch

时间: 2024-10-13 01:52:34

Elasticsearch 5.0的相关文章

elk(Elasticsearch 2.0.0, Logstash 2.0.0, Kibana4.2.0) redis centos6.6安装与配置

本次安装的相关环境:Centos_x64_6.6  redis2.8.23  Elasticsearch 2.0.0, Logstash 2.0.0,  Kibana4.2.0 软件下载地址: redis: http://redis.io/download Elasticsearch: wget https://download.elasticsearch.org/elasticsearch/release/org/elasticsearch/distribution/rpm/elasticse

Windows下安装Elasticsearch 5.0.0遇到的问题

首先用一种比较简单的方法 首先下载zip安装包:https://www.elastic.co/downloads/elasticsearch . 解压到安装目录: 进入安装目录,在进入bin目录,启动cmd: 运行elasticsearch.bat.报错Unsupported major.minor version 52.0. 原因是我同时安装了jdk1.7和jdk1.8.但是环境变量中我的JAVA_HOME设置的是jdk1.7的,Elasticsearch 5.0.0只支持jdk1.8,所以启

Elasticsearch从0.90到1.2的不兼容变化-系统和设置

本文为官方文档的翻译加个人理解.作者翻译时,elasticsearch(下面简称es)的版本为1.2.1. 1.系统级别及设置方面 1.1 es启动时,默认是作为一个前台程序启动.如果你想让es作为一个后台守护进程,需要在启动命令后面加-d参数. 1.2 命令行参数,默认不需要再加-Des.前缀.新的格式如下: ./bin/elasticsearch --node.name=search_1 --cluster.name=production 1.3 在64位的linux系统上面,默认采用内存映

Elasticsearch从0.90(0.90.x)到1.2(1.x)API的变化-二

本文为官方文档的译文加个人理解.作者翻译时,elasticsearch(下面简称es)的版本为1.2.2. 请支持原创:http://www.cnblogs.com/donlianli/p/3836768.html 一.统计信息相关命令的变化 有关集群状态cluster_state, 节点信息nodes_info, 节点统计信息nodes_stats和索引信息indices_stats命令格式进行了统一,比如查看集群信息使用命令: curl -XGET http://localhost:9200

elasticsearch 6.0.0及之后移除了一个索引允许映射多个类型的操作(Removal of mapping types)

用到了6.2,还以为像5.X 一样允许建立 父-子关系文档 ,即一个索引下允许映射多个类型,操作后发现行不通 如下代码: PUT /company { "mappings": { "branch": {}, "employee": { "_parent": { "type": "branch" } } } } 找到最新的官方文档,给出了说明,大意是: 6.0.0移除了一个索引允许映射多个

Elasticsearch 7.0 正式发布,盘他!

原文:Elasticsearch 7.0 正式发布,盘他! 版权声明:本文为博主原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明. 本文链接:https://blog.csdn.net/wojiushiwo987/article/details/89291417 Elastic{ON}北京分享了Elasticsearch7.0在Speed,Scale,Relevance等方面的很多新特性. 比快更快,有传说中的那么牛逼吗?盘他! 通过本文,你能了解到: Elasti

ElasticsearchException: java.io.IOException: failed to read [id:0, file:/data/elasticsearch/nodes/0/_state/global-0.st]

from : https://www.cnblogs.com/hixiaowei/p/11213143.html 1.以前装过elasticsearch,重新安装elastic search ,报错 [2019-07-19T14:32:10,720][ERROR][o.e.g.GatewayMetaState ] [master-node] failed to read local state, exiting... org.elasticsearch.ElasticsearchExceptio

ElasticSearch 5.0.0 安装部署常见错误或问题

问题一: [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_SECCOMPandCONFIG_SECCOMP_FILTERcompiledinatorg.elasticsearch.boo

Elasticsearch 5.0 安装 Search Guard 5 插件 (五)

一.Search Guard 简介 Search Guard  是 Elasticsearch 的安全插件.它为后端系统(如LDAP或Kerberos)提供身份验证和授权,并向Elasticsearch添加审核日志记录和文档/字段级安全性. Search Guard 所有基本安全功能都是免费的,并且内置在Search Guard中.  Search Guard 支持OpenSSL并与Kibana和logstash配合使用. 基本安全功能包括: 通过SSL / TLS进行节点到节点加密 通过HTT