码迷,mamicode.com
首页 > 其他好文 > 详细

【ElasticSearch】 elasticsearch-head插件安装

时间:2019-03-08 17:11:00      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:tar   dir   director   文档   配置文件   src   centos 7   后台运行   http   

  本章介绍elasticsearch-head插件安装,elasticsearch安装参考:【ElasticSearch】 安装

  elasticsearch-head安装和学习可参照官方文档: https://github.com/mobz/elasticsearch-head

  elasticsearch自5.x版本后便不支持直接安装head插件。
  技术图片

安装

  环境

    a、Linux(CentOS 7.4)

    b、GIt环境

    c、NodeJS环境(参考:【Node.js】安装及使用

    d、elasticsearch(6.5.2)

  1、使用git,在github上克隆elasticsearch-head插件

    命令:git clone git://github.com/mobz/elasticsearch-head.git

  2、进入下载目录,命令:cd elasticsearch-head

  3、安装,命令:npm install

  4、运行,命令:npm run start

    后台运行命令:nohup npm run start &

  5、浏览器中使用,http://ip:9100,进行访问

    技术图片

 

    注意:head插件要连接到es,es配置文件(config/elasticsearch.yml)中需要增加一下内容,并重启es服务

1 # 配置head插件所需
2 # 是否支持跨域,默认为false
3 http.cors.enabled: true
4 # 当设置允许跨域,默认为*,表示支持所有域名
5 http.cors.allow-origin: "*"

 

 

 

  备注:安装过程可能报错

    a、报:lbzip2: Cannot exec: No such file or directory 错误

      解决办法:安装bzip2包即可,命令:yum -y install bzip2

    技术图片

 

【ElasticSearch】 elasticsearch-head插件安装

标签:tar   dir   director   文档   配置文件   src   centos 7   后台运行   http   

原文地址:https://www.cnblogs.com/h--d/p/10496402.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!