Linux环境下安装并启动Elasticsearch-head
# 1、elasticsearch-head 介绍
官方地址: https://github.com/mobz/elasticsearch-head
elasticsearch-head 是一款用来管理 Elasticsearch 集群的第三方插件工具。 elasticsearch-Head 插件在 5.0 版本之前可以直接以插件的形式直接安装,但是 5.0 以后安装方式发生了改变,需要 nodejs 环境支持,或者直接使用别人封装好的 docker 镜像,更推荐的是谷歌浏览器的插件。
# 2、elasticsearch-head 安装
# npm 安装 elasticsearch-head
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 #下载安装nodejs
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
#下载elasticsearch-head
git clone git://github.com/mobz/elasticsearch-head.git
#进入elasticsearch-head安装目录
cd elasticsearch-head
#配置国内镜像
npm install -g cnpm --registry=https://registry.npm.taobao.org
#安装
cnpm install
#启动
cnpm run start
修改 Elasticsearch 配置文件,添加如下参数并重启:
1 | #准许es被跨域访问 |
# 关于我
Brath 是一个热爱技术的 Java 程序猿,公众号「InterviewCoder」定期分享有趣有料的精品原创文章!
非常感谢各位人才能看到这里,原创不易,文章如果有帮助可以关注、点赞、分享或评论,这都是对我的莫大支持!