美文网首页
安装head插件 (es 6.2)

安装head插件 (es 6.2)

作者: g0 | 来源:发表于2018-05-21 14:08 被阅读888次

head插件是一个es集群的web前端工具,我们可以es查询,查看es集群状态等

es 6.2.2版本es自带 需要独立安装

  1. 安装nodejs
    下载https://github.com/coreybutler/nvm-windows 安装
image.png

建议下载第一个

  1. nvm install v8.9.4

npm加速 全局安装cnpm 指定来源淘宝镜像

npm install -g cnpm --registry=https://registry.npm.taobao.org

4170354-f1c8f9f758443aca.png
  1. git clone git://github.com/mobz/elasticsearch-head.git
    注意head不要解压到es的plugin文件夹下
  • cd elasticsearch-head

修改Head主目录下的Gruntfile.js,由于默认文件中是没有hostname属性的,我们需要手动添加:

image.png
为什么需要修改配置文件:

head插件连接elasticsearch需要注意的点:

因为head插件是一个独立进程,启动后是一个独立的服务器外加端口,比如我的虚拟机ip地址:http://192.168.0.111:9100/

而elasticsearch启动后也是一个独立的进程,ip地址:http://192.168.0.111:9200/

这样两个独立进程,虽然服务器ip地址相同,但是端口不同,此时会发生跨域的情况。。

于是官方给出这样一段话,我们在对elasticsearch启动的时候追加两个配置文件属性即可防止跨域。

添加

http.cors.enabled: true
http.cors.allow-origin: "*"

image.png
  • npm install
  • npm run start

open http://localhost:9100/

相关文章

  • 安装head插件 (es 6.2)

    head插件是一个es集群的web前端工具,我们可以es查询,查看es集群状态等 es 6.2.2版本es自带 需...

  • ES插件安装(elasticsearch-head、Cerebr

    ES插件安装(elasticsearch-head、Cerebro、Kibana) 注:elasticsearch...

  • 安装elasticsearch

    先安装并启动es的head插件: 利用dockerFile方式给es安装分词器 执行docker build -t...

  • 安装ES head 插件

    1.2 安装head插件 ES 5.X 和之前的版本不太一样,elasticsearch-head 做为一个单独的...

  • ES插件head安装

    用于查看集群状态 ES: v5.6.12 OS: Ubuntu 16.04 ES安装完成 head插件 官方rea...

  • 安装ES Head插件

    下载Head插件 安装 gruntnpm install -g grunt-cli (1) 下载地址:https:...

  • ES可视化插件ES-HEAD安装

    ES可视化插件ES-HEAD安装 修改设置系统参数 修改elasticsearch.yml的配置 启动ES 下载h...

  • 连接es

    web端连接es 通过安装head插件,可以通过地址http://localhost:9200/_plugin/h...

  • 启动es和head插件

    启动es服务 验证es是否启动成功 启动head插件 验证head启动成功

  • es(elsaticsearch6)入门

    1.需要准备的资料链接2.es安装与集群配置3.head插件安装4.es基本用法5.es高级用法6.springb...

网友评论

      本文标题:安装head插件 (es 6.2)

      本文链接:https://www.haomeiwen.com/subject/afdfjftx.html