美文网首页
elasticsearch-head 笔记

elasticsearch-head 笔记

作者: 执行合一 | 来源:发表于2018-08-23 16:54 被阅读0次

一、安装

        yum install git npm # npm在epel源中

        git clone https://github.com/mobz/elasticsearch-head.git    # 安装过程需要连接互联网

        cd elasticsearch-head          # git clone后会自动生成的一个目录

        npm install

         npm run start

二、测试

        使用 http://xx.xx.xx.xx:9200 在浏览器访问,如果能打开说明安装正常

三、权限设定

        查询集群健康信息,那么需要在elasticsearch配置文件中授权

vim /etc/elasticsearch/elasticsearch.yml

http.cors.enabled: true         # elasticsearch中启用CORS

http.cors.allow-origin: "*"      # 允许访问的IP地址段,* 为所有IP都可以访问

相关文章

网友评论

      本文标题:elasticsearch-head 笔记

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