美文网首页
Elasticsearch 5.2.x 使用 Head 插件连接

Elasticsearch 5.2.x 使用 Head 插件连接

作者: 雨中星辰0 | 来源:发表于2018-12-01 08:26 被阅读0次

    本次首先说Head插件的安装:

    1、安装插件head

    # 去github上下载head
    git clone git://github.com/mobz/elasticsearch-head.git
    # 由于head基于nodejs所以安装它
    yum -y install nodejs npm
    npm install grunt-cli
    npm install grunt
    grunt -version
    # 修改配置文件
    cd elasticsearch-head
    vim _site/app.js
    # 修改 『http://localhost:9200』字段到本机ES端口与IP
    

    2、启动head

    cd elasticsearch-head
    grunt server
    # 打开浏览器 http://localhost:9100
    

    3、出现问题
    head主控页面是可以显示的,但是显示连接失败

    “集群健康值: 未连接”

    4、解决方案

    修改elasticsearch.yml文件

    vim $ES_HOME$/config/elasticsearch.yml
    # 增加如下字段
    http.cors.enabled: true
    http.cors.allow-origin: "*"
    

    相关文章

      网友评论

          本文标题:Elasticsearch 5.2.x 使用 Head 插件连接

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