前言
介绍三种安装es-head插件的方式
1、Google浏览器插件 安装Google浏览器插件
,直接访问Elasticsearch
2、npm安装 下载源码
,编译安装,在nodejs环境下运行插件
一、第一种 :
通过chrome安装插件的方式提供一个可操作es的图形化界面。
在chrome 浏览器中,通过“扩展程序” 添加 elasticsearch head 插件的方式,这种方式无须开启
es的跨域
访问。
1、打开链接
谷歌浏览器访问
http://extb.cqttech.com/search/elasticsearch%2520head
2、安装下图中插件(需要下载双核浏览器)
3、点击放大镜图标使用插件
二、第二种 :
正如centos是使用yum命令安装软件的,ubuntu使用apt命令安装软件,python使用pip命令安装插件,nodejs使用npm命令来安装,所以我们需要先安装npm软件。
1、这里使用源码安装npm,解压即用。
cd /opt/
wget https://nodejs.org/dist/v12.13.0/node-v12.13.0-linux-x64.tar.xz
tar xf node-v12.13.0-linux-x64.tar.xz
mv node-v12.13.0-linux-x64 node
echo 'export PATH=$PATH:/opt/node/bin'>>/etc/profile
source /etc/profile
npm -v
node -v
2、下载es-head插件
git clone git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head/
通过阿里巴巴源安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install
3、启动es-head插件
#必须进入es-head插件目录运行启动命令
cd elasticsearch-head/
cnpm run start
使用浏览器访问http://1.117.29.216:9100/即可访问到es-head插件,再使用es-head插件访问es数据库,效果如下
注意
9100端口是插件端口,9200是es端口
通过插件访问http://1.117.29.216:9200点击连接还是失败,是因为es有安全机制只允许服务器本地访问,这时需要设置
4、设置跨域
设置跨域同时也适用于安装的es-head插件跟es数据不在同一台服务器上时的情况
#编辑es主配置文件,在文本末尾添加如下两行配置
vim /etc/elasticsearch/elasticsearch.yml
# 是否支持跨域
http.cors.enabled: true
# *表示支持所有域名
http.cors.allow-origin: "*"
systemctl restart elasticsearch
cd elasticsearch-head/
cnpm run start
5、访问效果
文章来源:https://www.toymoban.com/news/detail-485015.html
三、ElasticSearch7.9.0集群搭建详细步骤
总结
注意 :别把es-head插件后放到 Elasticsearch的plugins目录下,否则会报错!!!
文章来源地址https://www.toymoban.com/news/detail-485015.html
到了这里,关于Elasticsearch-head插件的安装的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!