安装Elasticsearch-head插件
此插件可实现通过浏览器对ES集群进行简单的状态监控及配置下发
- 以下操作仅需要在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
-
浏览器访问http://192.168.130.185:9100/
- 可看到集群状态、副本情况、索引等信息则为正常。