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】

在这里插入图片描述

在这里插入图片描述


在这里插入图片描述


在这里插入图片描述

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

在这里插入图片描述

相关文章

# 前言 现有主流消息中间件都是生产者-消费者模型,主要角色...
错误的根源是:kafka版本过高所致,2.2+=的版本,已经不需要...
DWS层主要是存放大宽表数据,此业务中主要是针对Kafka topic...
不多BB讲原理,只教你怎么用,看了全网没有比我更详细的了,...
终于写完了,其实最开始学kafka的时候是今年2月份,那时候还...
使用GPKafka实现Kafka数据导入Greenplum数据库踩坑问题记录(...