elasticsearch5 版本集群管理工具head安装

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elasticsearch5 版本集群管理工具head安装相关的知识,希望对你有一定的参考价值。

1、下载head插件源码

https://github.com/mobz/elasticsearch-head

 

2、下载nodejs

nodejs官网下载地址https://nodejs.org/dist/

 

wget https://nodejs.org/dist/v6.9.2/node-v6.9.2-linux-x64.tar.xz

 

3、配置node环境变量

xz –d node-v6.9.2-linux-x64.tar.xz
tar –xvf node-v6.9.2-linux-x64.tar
mv node-v6.9.2-linux-x64 /data/PRG/node
    
vim /etc/profile
export NODE_HOME=/data/PRG/node
export PATH=$PATH:$NODE_HOME/bin
source /etc/profile
# node –vv6.9.2
# npm –v3.10.9

 

 

4、安装grunt

cd elasticsearch-head
npm install -g grunt --registry=https://registry.npm.taobao.org

 

  

修改head目录下的Gruntfile.js配置,head默认监听127.0.0.1

# vim Gruntfile.js

hostname: ‘0.0.0.0‘,

技术分享

 

5、elasticsearch配置允许跨域访问

修改elasticsearch配置文件elasticsearch.yml

http.cors.enabled: true

 
http.cors.allow-origin: "*"

 

6、重启elasticsearch,并启动node

cd elasticsearch-head

 
node_modules/grunt/bin/grunt server

 

技术分享

 

访问http://192.168.62.200:9100

技术分享

以上是关于elasticsearch5 版本集群管理工具head安装的主要内容,如果未能解决你的问题,请参考以下文章

elasticsearch5.5.1集群部署手册

关于elasticsearch5.0+中head连不上es,集群健康值: 未连接

搭建Elasticsearch5.6.8 分布式集群

Elasticsearch5.1.1集群安装部署

基于docker 搭建Elasticsearch5.6.4 分布式集群

基于docker 搭建Elasticsearch5.6.4 分布式集群