知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

【Apache Kafka】安装指南

发布时间:2014-09-05 13:44:43作者:知识屋

【Apache Kafka】安装指南
 
在Ubuntu12.04 server上安装单结点kafka,我的机器上之前已经安装过zookeeper-3.4.5
 
下载一个kafka-0.7.2.tar.gz,解压安装
> tar xzf kafka-<VERSION>.tgz
> cd kafka-<VERSION>
> ./sbt update
> ./sbt package
这个过程中会自动安装Scala,需要花费点时间。
 
修改/config/server.properties文件,将里面的hostname修改为你主机的IP,还需要修改zk.connect为ZooKeeper的IP:2181。
 
然后重启kafka-server-start.sh
bin/kafka-server-start.sh config/server.properties
producer发送消息
bin/kafka-console-producer.sh --zookeeper localhost:2181 --topic test 
This is a test.
 
consumer获得消息
bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic test --from-beginning
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜