ES的图形化界面head安装

准备安装包

开始安装

2.1 node安装

head是使用js运行的,需要node.js的支持
双击node的安装包,下一步即可
win+R调出控制台,输入

node -v

显示版本号,即表示安装成功

2.2 安装head依赖

npm install -g grund-cli

2.3 启动

grunt server

此时打开浏览器,访问本机9100端口即可访问head的页面

ES开启跨域

1,ES的配置文件添加

http.cors.enabled= true
http.cors.allow-origin= "*"

2,重启ES

原文地址:https://www.cnblogs.com/lifelikeplay/p/14048672.html