Elasticsearch-head将是一款专门针对于Elasticsearch的客户端工具
Elasticsearch-head配置包,下载地址:https://github.com/mobz/elasticsearch-head
windows下安装ElasticSearch的Head插件
安装
注意:es5以上版本安装head需要安装node和grunt
第一步:node
#安装node
sudo apt-get install nodejs
#安装sudo apt-get install npm
#查看版本
node -v
第2步 执行 npm install -g grunt-cli 安装grunt ,安装完成后执行grunt -version查看是否安装成功,会显示安装的版本号
安装grunt
npm install -g grunt-cli
查看grunt 版本
grunt -version
第3步修改elasticsearch.yml配置
进入安装目录下的config目录,修改elasticsearch.yml文件.在文件的末尾加入以下代码
http.cors.enabled: true
http.cors.allow-origin: "*"
node.master: true
node.data: true
#然后去掉network.host: 192.168.0.1的注释并改为network.host: 0.0.0.0,去掉cluster.name;node.name;http.port的注释(也就是去掉#)
第4步克隆下载elasticsearch-head
https://github.com/mobz/elasticsearch-head
git clone https://github.com/mobz/elasticsearch-head.git
第5步启动grunt
执行
#node-grunt-cli
sudo apt install node-grunt-cli
npm install
#启动grunt
grunt server
本地访问
es-head远程访问
网友评论