zoukankan      html  css  js  c++  java
  • ELK搭建<二>:安装ES插件head

    1.去github下载head,针对ES版本不同,安装方式也不一样,

    =》在2.x以前版本可以通过插件安装

    for Elasticsearch 2.x: sudo elasticsearch/bin/plugin install mobz/elasticsearch-head
    for Elasticsearch 1.x: sudo elasticsearch/bin/plugin -install mobz/elasticsearch-head/1.x
    for Elasticsearch 0.x: sudo elasticsearch/bin/plugin -install mobz/elasticsearch-head/0.9
    #访问地址
    http://localhost:9200/_plugin/head/

    ---2.x以前的版本到此结束了---

    =》在5.x版本以后需要另行安装,用node启动,node下载

    可以通过命令安装:

    #下载head
    git clone git://github.com/mobz/elasticsearch-head.git
    #进入head文件夹
    cd elasticsearch-head
    #下载依赖
    npm install
    #启动
    npm run start
    #访问地址
    http://localhost:9100/

    如果启动报错,则需要安装grunt

    #进入head文件夹
    cd elasticsearch-head
    #选用淘宝镜像速度更快 npm install -g grunt --registry=https://registry.npm.taobao.org
    #下载依赖
    npm install
    #在elasticsearch-head目录下node_modules下如果没有grunt文件夹,则需要运行:
    npm install grunt --save 

    2.修改head根目录下的配置文件Gruntfile.js,示例:

    connect: {
                server: {
                    options: {
                        hostname: '*',
                        port: 9100,
                        base: '.',
                        keepalive: true
                    }
                }
            }

    根据自己需要修改hostname和port就行了

    3.启动head

    进入 elasticsearch-head/node_modules/grunt/bin 目录

    运行 ./grunt server 就启动完毕了

     

    进入 http://localhost:9100/ 就可以访问了

  • 相关阅读:
    Mybatis多层嵌套查询
    UUID 唯一性实现原理
    oracle 多实例启动
    orcal启动多实例是报 ORA-00845: MEMORY_TARGET not supported onthis system
    java调用quartz 2.2.2方法总结。
    mybatis中like的使用(模糊查询)
    Orcal数据库实现主键ID自增
    spring cloud分布式关于熔断器
    spring cloud分布式健康检查
    spring cloud分布式整合zipkin的链路跟踪
  • 原文地址:https://www.cnblogs.com/henglan/p/10790103.html
Copyright © 2011-2022 走看看