ES集群web可视化集群管理Cerebro

cerebo是kopf在es5上的替代者

下载地址:

https://github.com/lmenezes/cerebro/releases

解压

tar zxvf cerebro-0.6.5.tgz
cd cerebro-0.6.5/

配置

# es服务配置
hosts = [
  {
    host = "http://hadoop3:9200"
    name = "bi-cluster"
  }

启动

服务被启动在前台,可以通过nohup命令启动到后台,通过supervisor等进程管理工具进行管理。
他并没有需要在命令行额外配置的地方,可以直接通过外网端口访问

[root@hadoop3 cerebro-0.7.3]# ./bin/cerebro -Dhttp.port=1234 -Dhttp.address=hadoop3 &

访问HTTP:

http://hadoop3:1234/#/overview?host=bi-cluster

你可能感兴趣的:(ES集群web可视化集群管理Cerebro)