标签:打包 运行 2.x .com src info 地址 start.s cat
Zookeeper
运行kafka需要使用Zookeeper,所以要先启动Zookeeper,如果没有Zookeeper,可以使用kafka自带打包和配置好的Zookeeper
1、进入kafka的bin目录,输入以下命令:
./zookeeper-server-start.sh ../config/zookeeper.properties
Kafka
1、进入bin目录,录入以下命令:
./kafka-server-start.sh ../config/server.properties
--后台启动
nohup ./kafka-server-start.sh ../config/server.properties &
2、启动成功后,会输出以下信息:
Kafka-Manager
1、进入bin目录,录入以下命令:
./kafka-manager -Dconfig.file=../conf/application.conf
--后台启动
nohup ./kafka-manager -Dconfig.file=../conf/application.conf &
2、启动成功后,会输出以下信息:
3、访问地址:http://172.xx.xx.61:9000/
4、kafka manger 中管理kafka
进入kafka manager 页面,点击cluster > add cluster
name 输入如:pet_kafka_trace_cluster
Cluster Zookeeper Hosts输入:172.xx.xx.68:2182,172.xx.xx.68:2182
标签:打包 运行 2.x .com src info 地址 start.s cat
原文地址:https://www.cnblogs.com/caoweixiong/p/10592134.html