文章目录
Github地址
因为误用了 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】
行了,这样吧,剩下的自己摸索吧