美文网首页
ES 6.2.4 head插件安装

ES 6.2.4 head插件安装

作者: byamao1 | 来源:发表于2018-11-04 11:29 被阅读0次

    主要参考:
    https://segmentfault.com/a/1190000014347757

    不过中间少了两个步骤:

    安装 grunt-cli
    npm install -g grunt-cli
    安装 grunt
    elasticsearch-head 下载完成后,进入 elasticsearch-head 文件夹,执行命令:
    npm install grunt --save
    https://www.jianshu.com/p/e3f7bf6277f9

    不过启动方式不同:
    下载的elasticsearch-head目录下,执行命令:

    grunt server
    

    输出如下内容表示启动成功:

    Running "connect:server" (connect) task
    Waiting forever...
    Started connect web server on http://localhost:9100
    
    

    或者后台方式

    nohup grunt server &
    然后再执行 exit。执行exit原因在于
    https://blog.csdn.net/liuyanfeier/article/details/62422742
    

    访问 http://你的ip:9100地址,就可以看到当前 Elasticsearch 集群信息。

    https://www.jianshu.com/p/e3f7bf6277f9

    相关文章

      网友评论

          本文标题:ES 6.2.4 head插件安装

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