kafka监控工具(EFAK)
github地址:https://github.com/smartloli/kafka-eagle-bin/
github介绍:https://github.com/smartloli/EFAK
1、下载
官网下载:https://www.kafka-eagle.org/
github下载地址:https://github.com/smartloli/kafka-eagle-bin/blob/master/efak-web-3.0.2-bin.tar.gz
2、解压
将下载好的压缩包上传至linux指定位置
tar-zxvf kafka-eagle-bin-3.0.1.tar.gz
cd kafka-eagle-bin-3.0.1
tar-zxvf efak-web-3.0.1-bin.tar.gz
cd efak-web-3.0.1
- tar -zxvf kafka-eagle-bin-3.0.1.tar.gz
- cd kafka-eagle-bin-3.0.1
- tar -zxvf efak-web-3.0.1-bin.tar.gz
- cd efak-web-3.0.1
3、配置
3.1、安装数据库,需要是mysql,并创建ke数据库
3.2、修改配置文件
1、来到安装目录conf文件夹下:
cd /usr/local/kafka-eagle-bin-3.0.1/efak-web-3.0.1/conf
2、编辑配置文件
vim system-config.properties
3、修改zookeeper配置和mysql连接配置
原zookeeper的相关配置:
修改后的zookeeper配置
efak.zk.cluster.alias=cluster1,cluster2
cluster1.zk.list=127.0.0.1:2181
4、修改mysql配置
原mysql配置:
修改后的mysql配置:
efak.driver=com.mysql.cj.jdbc.Driver
efak.url=jdbc:mysql://127.0.0.1:3306/ke?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=Asia/Shanghai
efak.username=root
efak.password=<你的mysql数据库密码>
5、在/etc/profile配置文件中配置环境变量
vim /etc/profile
exportKE_HOME=/usr/local/kafka-eagle-bin-3.0.1/efak-web-3.0.1
exportPATH=$KE_HOME/BIN:$PATH
source /etc/profile
4、启动
- 确保kafka采用zookeeper方式启动(到kafak安装目录的bin文件夹下,先启动zookeeper,在启动kafka,可参考kafka启动)
- 在EFAK安装目录的bin目录下执行:./ke.shstart(命令使用:ke.sh [start|status|stop|restartlstats])
4.1、启动zookeeper
4.2、启动kafka
4.3、启动EFAK
./ke.sh start
5、访问http://ip:8048
版权归原作者 小码哥呀 所有, 如有侵权,请联系我们删除。