官网资料
前置部署
安装步骤
1、上传解压
cd /usr/local/soft/
tar -zxvf kafka-eagle-web-1.3.7-bin.tar.gz
2、修改环境变量
vi /etc/profile
系统环境变量添加内容:
# kafka监控
export KE_HOME=/usr/local/soft/kafka-eagle-web-1.3.7
export PATH=$PATH:$KE_HOME/bin
使系统环境变量生效:
source /etc/profile
3、部署MySQL数据库
在数据库中创建名为ke的数据库
4、配置参数
cd /usr/local/soft/kafka-eagle-web-1.3.7/conf/
修改system-config.properties文件,修改内容如下
######################################
# multi zookeeper&kafka cluster list
######################################
kafka.eagle.zk.cluster.alias=cluster1
cluster1.zk.list=hadoop100:2181,hadoop101:2181,hadoop102:2181
######################################
# zk client thread limit
######################################
kafka.zk.limit.size=25
######################################
# kafka eagle webui port
######################################
kafka.eagle.webui.port=8048
######################################
# kafka offset storage
######################################
cluster1.kafka.eagle.offset.storage=kafka
######################################
# enable kafka metrics
######################################
kafka.eagle.metrics.charts=true
kafka.eagle.sql.fix.error=false
######################################
# kafka sql topic records max
######################################
kafka.eagle.sql.topic.records.max=5000
######################################
# alarm email configure
######################################
kafka.eagle.mail.enable=false
[email protected]
[email protected]
kafka.eagle.mail.password=mqslimczkdqabbbh
kafka.eagle.mail.server.host=smtp.163.com
kafka.eagle.mail.server.port=25
######################################
# alarm im configure
######################################
#kafka.eagle.im.dingding.enable=true
#kafka.eagle.im.dingding.url=https://oapi.dingtalk.com/robot/send?access_token=
#kafka.eagle.im.wechat.enable=true
#kafka.eagle.im.wechat.token=https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=xxx&corpsecret=xxx
#kafka.eagle.im.wechat.url=https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=
#kafka.eagle.im.wechat.touser=
#kafka.eagle.im.wechat.toparty=
#kafka.eagle.im.wechat.totag=
#kafka.eagle.im.wechat.agentid=
######################################
# 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=PLAIN
cluster1.kafka.eagle.sasl.jaas.config=org.apache.kafka.common.security.plain.PlainLoginModule required username="admin" password="kafka-eagle";
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="admin" password="kafka-eagle";
######################################
# kafka jdbc driver address
######################################
kafka.eagle.driver=com.mysql.jdbc.Driver
kafka.eagle.url=jdbc:mysql://hadoop100:3306/ke?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
kafka.eagle.username=root
kafka.eagle.password=root123
核心修改内容(集中在前五行和后五行)
kafka.eagle.zk.cluster.alias=cluster1
cluster1.zk.list=hadoop100:2181,hadoop101:2181,hadoop102:2181kafka.eagle.driver=com.mysql.jdbc.Driver
kafka.eagle.url=jdbc:mysql://hadoop100:3306/ke?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
kafka.eagle.username=root
kafka.eagle.password=root123
5、启动与关闭
给ke.sh赋予可执行权限
cd/usr/local/soft/kafka-eagle-web-1.3.7/bin/
chmod +x ke.sh
启动与查看
ke.sh start
ke.sh status
ke.sh stop
自动生成用户名和密码,如上图 admin 123456
注:
ke命令如下,可以直接输入ke.sh查看
ke.sh {start|stop|restart|status|stats|find|gc|jdk}
6、查看
浏览器输入 http://192.168.1.100:8048/ke,用户名和密码启动的时候已生成
参考资料
https://blog.51cto.com/u_11529070/9210756
标签:Eagle,cluster1,ke,eagle,kafka,im,######################################,Kafka From: https://blog.csdn.net/taogumo/article/details/140884741