一、介绍
elasticsearch集群安装成功之后,需要对集群中的索引数据、运行情况等信息进行查看,索引需要安装一些插件,方便查看。elasticsearch的插件非常多,我一般安装这三个head、bigdesk、kopf。
二、需要的插件包
1、elasticsearch-head-master.zip
2、bigdesk-master.zip
3、kopf-master.zip
三、安装插件
1、head插件功能非常强大。可以查看集群几乎所有信息,还能进行简单的搜索查询,观察自动恢复的情况等等。
下载head插件包,解压到/usr/local/elasticsearch-1.7.1/plugins/head/目录中,插件目录也可以在配置文件中更改。
http://localhost:9200/_plugin/head/
2、bigdesk是集群监控插件,通过该插件可以查看整个集群的资源消耗情况,cpu、内存、http链接等等。
下载bigdesk插件包,解压到/usr/local/elasticsearch-1.7.1/plugins/bigdesk/目录中。
http://localhost:9200/_plugin/bigdesk/
3、kopf插件,其实上面2个插件功能已经涵盖了kopf的功能。但是我对kopf情有独钟,也许是颜色搭配,也许是简洁,谁知道呢。
下载kopf插件包,解压到/usr/local/elasticsearch-1.7.1/plugins/kopf/目录中。
http://localhost:9200/_plugin/kopf/
时间: 2024-10-09 07:06:27