Elasticsearch-head 部署
Posted juchangfei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Elasticsearch-head 部署相关的知识,希望对你有一定的参考价值。
elasticsearch-head是一个elasticsearch集群的web前端。官方文档:
https://github.com/mobz/elasticsearch-head
在elasticsearch.yml中增加两行配置
$ tail -2 config/elasticsearch.yml http.cors.enabled: true http.cors.allow-origin: "*"
下载head并安装,需要先yum安装nodejs,bzip2等软件
$ yum install nodejs bzip2 -y
$ git clone git://github.com/mobz/elasticsearch-head.git $ cd elasticsearch-head $ npm install $ nohup npm run start &
在浏览器打开http://192.168.1.11:9100/
以上是关于Elasticsearch-head 部署的主要内容,如果未能解决你的问题,请参考以下文章
自己动手制作elasticsearch-head的Docker镜像