CentOS7.6-ELK搭建(三)

安装Elasticsearch-head插件

此插件可实现通过浏览器对ES集群进行简单的状态监控及配置下发

  1. 以下操作仅需要在ES集群的某一个节点上执行即可
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
yum install npm 
cd /usr/local/src/
git clone https://github.com/mobz/elasticsearch-head.git
npm config set strict-ssl false
npm install -g cnpm  --registry=https://registry.npm.taobao.org
cnpm install -g grunt
cd /usr/local/src/elasticsearch-head/
cnpm run start
启动成功
  1. 浏览器访问http://192.168.130.185:9100/


    访问elasticsearch-head
  2. 可看到集群状态、副本情况、索引等信息则为正常。

你可能感兴趣的:(CentOS7.6-ELK搭建(三))