1.github上下载
下载后解压,
(自己配置node.js环境)
进入elasticsearch-head下npm install
安装,
安装完成后
npm run start
在自己的浏览器上访问localhost:9100
但是你会发现因为跨域不能连接上。那我们要进行相应的配置
2.配置跨域
在安装的elasticsearch下的config/elasticsearch.yml下增加配置
http.cors.enabled: true
http.cors.allow-origin: "*
重新启动elasticsearch后,再访问你会发现已经可以了。
3.centos7安装elasticsearch-head
centos 和 windows安装基本一致
保证centos系统的nodejs环境,设置淘宝数据源。
再elasticsearch-head下npm install
编译
后台常驻启动
在当前目录创建日志输出文件mkdir log
、touch run-log.log
异步启动
cd /software/elasticsearch-head/node_modules/grunt/bin/
nohup ./grunt server >/software/elasticsearch-head/log/run-log.log &
exit
退出,否则关闭本地sell窗口会自动关闭head项目