安装node
brew install node
下载插件并安装
插件主页:https://github.com/mobz/elasticsearch-head
git clone git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head
npm install
安装完成后在elasticsearch-head/node_modules目录下会出现grunt文件。
如果没有grunt二进制程序,需要执行
cd elasticsearch-head
npm install grunt --save
修改服务器监听地址
修改elasticsearch-head下Gruntfile.js文件,默认监听在127.0.0.1下9200端口
图片.png修改连接地址
cd elasticsearch-head/_site
vim app.js
this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://localhost:9200";
重新运行npm install(此处是否一定需要重新运行,尚不确定)
启动服务
elasticsearch-head/node_modules/grunt/bin/grunt server &
图片.png
集群健康值:显示“未连接”
解决方案:
vim $ES_HOME$/config/elasticsearch.yml
增加如下字段
http.cors.enabled: true
http.cors.allow-origin: "*"
重启es,并刷新head页面,发现已经可以连接上:
图片.png 图片.png其他注意事项:
目前es5.5版本貌似与java9版本不兼容,使用jdk8可以运行es。
网友评论