本篇内容介绍了“Centos7下怎么安装kafka-manager”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
当前版本已更新至3.0.0.1,本次安装最新版本。
下载源码包:https://github.com/yahoo/kafka-manager/releases (不同版本)
克隆源代码:git clone https://github.com/yahoo/CMAK.git (最新版本)
根据README提示,新版本编译依赖java-11,所以首先要准备java-11环境(直接到官网下载解压即可)。
进入源码目录进行编译。
/path/to/cmak/sbt -java-home /path/to/java-11 clean dist
-java-home:在系统环境java版本和当前需要java版本不一致时,使用该参数指定java家目录。
这是一个漫长的过程,耐心等待…
编译完成后会提示,编译好的文件保存到了:/path/to/cmak/target/universal/cmak-3.0.0.1.zip
将上述cmak-3.0.0.1.zip文件拷贝到/path/to/kafka-manager 目录下,解压。修改配置文件 conf/application.conf:
kafka-manager.zkhosts="my.zookeeper.host.com:2181,other.zookeeper.host.com:2181"cmak.zkhosts="my.zookeeper.host.com:2181,other.zookeeper.host.com:2181"
kafka-manager支持ldap认证,这里不做详述。
默认使用9000端口,如果端口占用,可以指定端口。
bin/cmak -Dconfig.file=conf/application.conf -java-home /path/to/jdk-11 -Dhttp.port=9001
到浏览器访问 http://ip:9001 即可。
使用systemctl管理kafka-manager服务
创建文件 /usr/lib/systemd/system/kafka-manager.service :
[Unit] Description=kafka-manager server service After=network.target [Service] WorkingDirectory=/path/to/kafka-manager/cmak-3.0.0.1 ExecStart=/path/to/kafka-manager/cmak-3.0.0.1/bin/cmak -Dconfig.file=/path/to/kafka-manager/cmak-3.0.0.1/conf/application.conf -java-home /path/to/jdk-11.0.6 -Dhttp.port=9001 Restart=on-failure RestartSec=60 User=work Group=work [Install] WantedBy=multi-user.target
完成上述配置后,执行 systemctl daemon-reload 。
$ systemctl start kafka-manager $ systemctl stop kafka-manager $ systemctl restart kafka-manager
# 加入开机启动
$ systemctl enable kafka-manager
配置日志切割
/path/to/kafka-manager/cmak-3.0.0.1/logs/application.log { daily rotate 10 dateext missingok notifempty }
“Centos7下怎么安装kafka-manager”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。