微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Apache Kafka-CMAKkafka manager安装部署使用

文章目录

在这里插入图片描述


Github地址

https://github.com/yahoo/CMAK

详见README.md


因为误用了 Apache 的商标,kafka manager改名为CMAK(Cluster Manager for Apache Kafka)

参考: https://github.com/yahoo/CMAK/issues/713

在这里插入图片描述


二进制安装包下载

Kafka Manager 在 3.0.0.2 之前的 Releases 版本中仅 提供源码 Source 包,未提供编译好的二进制 Binary 包。


3.0.0.2 及之后

Release 地址 : https://github.com/yahoo/CMAK/releases

在这里插入图片描述


3.0.0.2 之前

如果想使用以前的版本,需要用使用 sbt 进行构造,从源码编译二进制包。

有热心网友自动构建了之前版本的二进制包, 点击这里查看下载。


Require

cmak-3.0.0.5 要求 JDK >= 11


安装

配置文件

修改conf/application.conf 配置文件

[root@localhost conf]# pwd
/root/cmak-3.0.0.5/conf
[root@localhost conf]# cat application.conf 

zk地址

# Settings prefixed with 'kafka-manager.' will be deprecated, use 'cmak.' instead.
# https://github.com/yahoo/CMAK/issues/713
kafka-manager.zkhosts="192.168.126.140:2181"
kafka-manager.zkhosts=${?ZK_HOSTS}
cmak.zkhosts="192.168.126.140:2181"
cmak.zkhosts=${?ZK_HOSTS}

启动
[root@localhost bin]# pwd
/root/cmak-3.0.0.5/bin
[root@localhost bin]# export JAVA_HOME=/root/jdk-11.0.10+9
[root@localhost bin]# 
[root@localhost bin]# nohup ./cmak &


2021-02-17 19:08:27,626 - [INFO] p.c.s.AkkaHttpServer - Listening for HTTP on /0:0:0:0:0:0:0:0:9000

访问 http://192.168.126.140:9000/

在这里插入图片描述


配置

添加

左上角

在这里插入图片描述


在这里插入图片描述


建议也勾选 Enable JMX Polling

其他参数保持不变 , 点击 【save】

在这里插入图片描述

在这里插入图片描述


在这里插入图片描述


在这里插入图片描述

行了,这样吧,剩下的自己摸索吧

在这里插入图片描述

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐