赞
踩
brew install kafka
Homebrew 源没有修改的可以先跳过
control + c
vi /usr/local/etc/kafka/server.properties
• 该配置为单机版,集群配置请查看博客后续文章
• 修改kafka的监听地址和端口为localhost:9092
listeners=PLAINTEXT://localhost:9092
brew services start zookeeper
brew services start kafka
• 由于kafka依赖zookeeper管理,所以zookeeper需要先启动
使用单个分区和只有一个副本的方式来创建一个名为“test”的topic
kafka-topics --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test
kafka-topics --list --zookeeper localhost:2181
通过控制台向“test”topic添加消息
kafka-console-producer --broker-list localhost:9092 --topic test
通过控制台消费“test”topic中的消息
kafka-console-consumer --bootstrap-server localhost:9092 --topic test --from-beginning
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。