准备环境
启动zookeeper
bin/zkServer.sh start
启动kafka前先将kafka注册到zookeeper上修改config/server.properties添加
zookeeper.connect=localhost:2181
当然也可以设置为zookeeper集群 结点用逗号分割开
zookeeper.connect=10.2.21.22:2181,10.2.21.23:2181
当然如果没有安装zookeeper时,kafka安装默认也封装了zookeeper
在config/zookeeper.properties中修改文件存储的位置dataDir
然后在bin下启动bin/zookeeper-server-start.sh start
启动
启动kafka
bin/kafka-server-start.sh config/server.properties
关闭kafka
bin/kafka-server-stop.sh stop
查看当前服务器中的所有topic
bin/kafka-topics.sh --zookeeper localhost:2181 --list
创建topic -first
bin/kafka-topics.sh --zookeeper localhost:2181 --create --replication-factor 1 --partitions 1 --topic first
删除topic(请先确保config/server.properties)中的topic是可以删除的可以增加如下配置
delete.topic.enable=true
//设置为可以删除
bin/kafka-topics.sh--zookeeper hadoop102:2181 --delete --topic first
发送消息
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic first
消费消息
bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic first --from-beginning