1. kafka-eagle-web 这个是一个强大的kafak 监控工具
官网下载地址: https://download.kafka-eagle.org/
2. 下载好后解压:
[root@master01 module]# cd kafka-eagle/
[root@master01 kafka-eagle]# ll
总用量 0
drwxr-xr-x 2 root root 63 2月 10 15:24 bin
drwxr-xr-x 2 root root 74 2月 10 15:34 conf
drwxr-xr-x 2 root root 27 2月 10 15:24 db
drwxr-xr-x 2 root root 31 2月 10 15:24 font
drwxr-xr-x 9 root root 123 2月 10 15:35 kms
drwxr-xr-x 2 root root 246 2月 10 15:35 logs
[root@master01 kafka-eagle]#
3. 修改配置文件:
3.1 配置环境变变量:
export KE_HOME=/opt/module/kafka-eagle
export PATH=$PATH:$KE_HOME/bin
3.2 修改配置文件 vi /opt/module/kafka-eagle/conf/system-config.properties
[root@master01 conf]# vi system-config.properties
######################################
# multi zookeeper&kafka cluster list
######################################
kafka.eagle.zk.cluster.alias=cluster1
cluster1.zk.list=master01.pxx.com:2181,master02.pxx.com:2181,slave01.pxx.com:2181
#cluster2.zk.list=xdn10:2181,xdn11:2181,xdn12:2181
######################################
# zk client thread limit
######################################
kafka.zk.limit.size=25
######################################
# kafka eagle webui port
######################################
kafka.eagle.webui.port=18048
######################################
# kafka offset storage
######################################
cluster1.kafka.eagle.offset.storage=kafka
#cluster2.kafka.eagle.offset.storage=zk
######################################
# kafka metrics, 30 days by default
######################################
kafka.eagle.metrics.charts=false
kafka.eagle.metrics.retain=30
######################################
# kafka sql topic records max
######################################
kafka.eagle.sql.topic.records.max=5000
kafka.eagle.sql.fix.error=false
######################################
# delete kafka topic token
######################################
kafka.eagle.topic.token=keadmin
######################################
# kafka sasl authenticate
######################################
cluster1.kafka.eagle.sasl.enable=false
cluster1.kafka.eagle.sasl.protocol=SASL_PLAINTEXT
cluster1.kafka.eagle.sasl.mechanism=SCRAM-SHA-256
cluster1.kafka.eagle.sasl.jaas.config=org.apache.kafka.common.security.scram.ScramLoginModule required username="kafka" password="kafka-eagle";
cluster1.kafka.eagle.sasl.client.id=
#cluster2.kafka.eagle.sasl.enable=false
#cluster2.kafka.eagle.sasl.protocol=SASL_PLAINTEXT
#cluster2.kafka.eagle.sasl.mechanism=PLAIN
#cluster2.kafka.eagle.sasl.jaas.config=org.apache.kafka.common.security.plain.PlainLoginModule required username="kafka" password="kafka-eagle";
#cluster2.kafka.eagle.sasl.client.id=
######################################
# kafka sqlite jdbc driver address
######################################
#kafka.eagle.driver=org.sqlite.JDBC
#kafka.eagle.url=jdbc:sqlite:/opt/module/kafka-eagle-web-1.4.0/db/ke.db
#kafka.eagle.username=root
#kafka.eagle.password=www.kafka-eagle.org
######################################
# kafka mysql jdbc driver address
######################################
kafka.eagle.driver=com.mysql.jdbc.Driver
kafka.eagle.url=jdbc:mysql://192.168.1.154:3306/ke?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
kafka.eagle.username=root
kafka.eagle.password=123456
4. 启动命令
/opt/module/kafka-eagle/bin/ke.sh start
启动成功日志:
*******************************************************************
* Kafka Eagle system monitor port successful...
*******************************************************************
[2021-02-10 15:35:04] INFO: Status Code[0]
[2021-02-10 15:35:04] INFO: [Job done!]
Welcome to
__ __ ___ ____ __ __ ___ ______ ___ ______ __ ______
/ //_/ / | / __/ / //_/ / | / ____/ / | / ____/ / / / ____/
/ ,< / /| | / /_ / ,< / /| | / __/ / /| | / / __ / / / __/
/ /| | / ___ | / __/ / /| | / ___ | / /___ / ___ |/ /_/ / / /___ / /___
/_/ |_| /_/ |_|/_/ /_/ |_| /_/ |_| /_____/ /_/ |_|\____/ /_____//_____/
Version 1.4.0
*******************************************************************
* Kafka Eagle Service has started success.
* Welcome, Now you can visit 'http://192.168.1.151:18048/ke'
* Account:admin ,Password:123456
*******************************************************************
* <Usage> ke.sh [start|status|stop|restart|stats] </Usage>
* <Usage> https://www.kafka-eagle.org/ </Usage>
*******************************************************************
5. 访问地址:
http://192.168.1.151:18048/ke
密码 admin/23456
kafak-eeagle.png
网友评论