Elasticsearch 5.2.x 使用 Head 插件连接

2018-12-01  本文已影响0人  雨中星辰0

本次首先说Head插件的安装:

1、安装插件head

# 去github上下载head
git clone git://github.com/mobz/elasticsearch-head.git
# 由于head基于nodejs所以安装它
yum -y install nodejs npm
npm install grunt-cli
npm install grunt
grunt -version
# 修改配置文件
cd elasticsearch-head
vim _site/app.js
# 修改 『http://localhost:9200』字段到本机ES端口与IP

2、启动head

cd elasticsearch-head
grunt server
# 打开浏览器 http://localhost:9100

3、出现问题
head主控页面是可以显示的,但是显示连接失败

“集群健康值: 未连接”

4、解决方案

修改elasticsearch.yml文件

vim $ES_HOME$/config/elasticsearch.yml
# 增加如下字段
http.cors.enabled: true
http.cors.allow-origin: "*"
上一篇下一篇

猜你喜欢

热点阅读