集群监控:Elasticsearch 5.4 Head安装
安装文档: https://github.com/mobz/elasticsearch-head
head 插件,需要 nodejs 启动,需要先装 nodejs
- 下载安装 Nodejs
nodejs 更多版本下载:https://nodejs.org/en/download/
wget https://nodejs.org/dist/v6.11.1/node-v6.11.1-linux-x64.tar.xz tar -xf node-v6.11.1-linux-x64.tar.xz cd node-v6.11.1-linux-x64
- 配置 Nodejs 环境
编辑 vim /etc/profile 追加
vim /etc/profile # set node environment export NODE_HOME=/usr/local/node-v6.11.1-linux-x64 export PATH=$PATH:$NODE_HOME/bin
生效 profile
source /etc/profile
- 安装 elasticsearch-head
git clone git://github.com/mobz/elasticsearch-head.git cd elasticsearch-head npm install npm run start
- 修改 elaticsearch 的配置文件,支持 head 插件链接
vim /usr/local/elasticsearch-5.4.2/config/elasticsearch.yml
追加
http.cors.enabled: true http.cors.allow-origin: "*"
- 访问 head 插件
http://localhost:9100/