上一篇博客中,无法在界面中展示,通过插件,可以再浏览器上访问
实验步骤:
(1)下载elasticsearch-head插件——确保虚拟机可以上网
网址:wget https://github.com/mobz/elasticsearch-head/archive/master.zip
(2)解压【图片中的压缩包不对,重新下载后,在进行解压】
(3)head插件本质上是一个nodejs的工程,因此需要安装node:
(4)测试:
(5)更换npm源安装
# cd elasticsearch-head-master/
# npm install --registry=https://registry.npm.taobao.org
注:这个很慢,出错
拉取一个压缩包,并安装
(6)修改ES主机ip和端口
# vim _site/app.js
"http://172.25.0.7:9200"
(7)启动head插件
# npm run start &
(8)修改ES跨域主持
# vim /etc/elasticsearch/elasticsearch.yml
http.cors.enabled: true # 是否支持跨域
http.cors.allow-origin: "*" # *表示支持所有域名
(9)重启ES服务
# systemctl restart elasticsearch.service
(10)测试:
修改elasticsearch-head下Gruntfile.js文件,默认监听在9100端口: