博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ES集群监控 之 Cerebro 0.8.3 安装及简单使用
阅读量:5248 次
发布时间:2019-06-14

本文共 915 字,大约阅读时间需要 3 分钟。

注意权限,不建议使用root,同es集群的启动用户相同即可

1. 下载 & 解压

# 下载wget https://github.com/lmenezes/cerebro/releases/download/v0.8.3/cerebro-0.8.3.zip# 解压unzip cerebro-0.8.3.zip# 软链ln -s cerebro-0.8.3 cerebro

2. 配置

什么都不配置,直接启动也是可以的(即:所有的都是用默认配置)

配置说明:

配置 备注
pidfile.path 服务运行的pid存放位置,如要避免产生pid可使用/dev/null
data.path cerebro存储数据的位置,默认为cerebro安装目录
auth -> settings -> username cerebro web服务的账号
auth -> settings -> password cerebro web服务的密码
hosts -> host es集群的host地址
hosts -> name es集群的名称(随便起即可)

配置详情:

vim conf/application.conf# 这里仅配置hostshosts = [  {    host = "http://10.0.0.7:9200"    name = "Test ES Cluster"  }

3. 启动

Cerebro 的默认监听ip为0.0.0.0,默认端口为9000

# 启动命令,可指定ip & potbin/cerebro -Dhttp.port=1234 -Dhttp.address=127.0.0.1

可能报如下错误,按提示新建目录即可

正确启动后,可以看到:

4. 访问

地址 http:// ip:1234,看到如下页面即为成功

  1. 登录页

  2. 首页

  3. 节点页,基本监控

  4. rest页,可做rest请求

  5. 其他功能暂略

转载于:https://www.cnblogs.com/remainsu/p/es-ji-qun-jian-kong-zhi-cerebro-083-an-zhuang-ji-j.html

你可能感兴趣的文章
【SVM】libsvm-python
查看>>
C++循环单链表删除连续相邻重复值
查看>>
渣渣小本求职复习之路每天一博客系列——Java基础(3)
查看>>
Jmeter接口压力测试,Java.net.BindException: Address already in use: connect
查看>>
ASP.NET使网页弹出窗口不再困难
查看>>
Leetcode Balanced Binary Tree
查看>>
Leetcode 92. Reverse Linked List II
查看>>
windown快速安装xgboost
查看>>
Linux上安装Libssh2
查看>>
九.python面向对象(双下方法内置方法)
查看>>
go:channel(未完)
查看>>
[JS]递归对象或数组
查看>>
LeetCode(17) - Letter Combinations of a Phone Number
查看>>
Linux查找命令对比(find、locate、whereis、which、type、grep)
查看>>
路由器外接硬盘做nas可行吗?
查看>>
python:从迭代器,到生成器,再到协程的示例代码
查看>>
Java多线程系列——原子类的实现(CAS算法)
查看>>
在Ubuntu下配置Apache多域名服务器
查看>>
多线程《三》进程与线程的区别
查看>>
linux sed命令
查看>>