kafka-eagle的安装

官方下载地址:http://download.kafka-eagle.org/

1.下载完成后解压
2.修改配置文件kafka-eagle-web-1.3.9\conf
zooker集群地址

kafka.eagle.zk.cluster.alias=cluster1
cluster1.zk.list=localhost:2181

配置告警邮件地址

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

Kafka Eagle默认存储在Sqlite中,如果要使用

MySQL可以替换驱动、用户名、密码、连接地址

kafka.eagle.driver=com.mysql.jdbc.Driver
kafka.eagle.url=jdbc:mysql://127.0.0.1:3306/keuseUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
kafka.eagle.username=root
kafka.eagle.password=xxxxx

参考:[https://www.cnblogs.com/smartloli/p/9371904.html]

开启kafka的jmx监控功能
1.在widonws平台下面
kafka_2.10-0.10.2.0\bin\windows\kafka-server-start.bat
在KAFKA_HEAP_OPTS下面配置JMX_PORT

    set JMX_PORT="9999"

2.linux平台下
export JMX_PORT="9999"

启动顺序:
1.启动zooker
2.启动kafka
3.在启动kafka-eagle
方式一:
a.可以将解压包下的kafka-eagle-web-1.3.9\kms\webapps\ke.war拷贝到自己
的tomcat\webapps下面
b.并将kafka-eagle-bin-1.3.9\kafka-eagle-web-1.3.9\conf\下面的
log4j.properties
system-config.properties
两个文件复制到tomcat\webapps\ke\WEB-INF\classes\conf
c.启动tomcat
方式二:
使用压缩包下面自带的tomcat启动

启动成功后在浏览器访问:http://127.0.0.1:8080/ke/
并输入默认的登陆:amdin/123456

你可能感兴趣的:(kafka-eagle的安装)