ElasticSearch - Head(下面统称Head) 是ElastciSearch 的集群管理工具,可以用于数据的浏览和查询
- Head 是一款开源软件,被托管在github上面, 所以如果我们需要使用它,必须先安装git ,通过git 获取到head
- 运行 head 需要用到 grant , 而 grant 需要npm 包管理器,所以需要安装 node.js。(安装node.js移步到https://blog.csdn.net/qq_40990836/article/details/93253513)
- ElasticSearch 5.0 之后, head 不作为插件放在plugins目录下面了,所以使用git 拷贝到本地
./elasticsearch-plugin list查看本机器已经安装的插件
./elasticsearch-plugin install plugin 安装一个插件
cd /usr/local/
// 克隆到本地
git clone git://github.com/mobz/elasticsearch-head.git
- 安装 head 的依赖包
npm install -g grunt-cli
// 进入到 head 的文件夹下 安装 依赖
cd /elasticsearch-head
cnpm install -g
- 修改Gruntfile.js
// 进入到head 的目录下修改Gruntfile.js
vim ./Gruntfile.js
// 修改connect-> server -> options -> hostname:'*'
6. 修改head插件默认的链接地址
cd /usr/local/elasticsearch-head/_site/
vim app.js
将 this.base_url=this.config.ase_uri || this.prefs.get('app-base_uri')||'http://localhost:9200';中的localhost修改为你的es 的服务器地址
- 配置head 插件可以跨域访问
打开elasticsearch的配置文件 elasticsearch.yml 在文件末尾处追加两行代码即可
http.cors.enabled:true
http.cors.allow-orign:"*"
8. 打开 9100 端口
firewall-cmd --zone=public --add-port=9100/tcp --permanent
- 如果想要使用 head 需要先启动 elsticsearch
先切换到elsticsearch用户 然后启动
su gssznb
./elasticsearch
// 启动 head 插件
// 进入到 ./node_moudle/grunt/bin
启动 head 插件
cd ./node_moudle/grunt/bin/
./grunt server