当前位置:  开发笔记 > 编程语言 > 正文

【Apache Kafka】安装指南

【ApacheKafka】安装指南在Ubuntu1204server上安装单结点kafka,我的机器上之前已经安装过zookeeper-345下载一个kafka-072targz,解压安装>tarxzfkafka-<VERSION>tgz>cdkafka-<V
【Apache Kafka】安装指南
 
在Ubuntu12.04 server上安装单结点kafka,我的机器上之前已经安装过zookeeper-3.4.5
 
下载一个kafka-0.7.2.tar.gz,解压安装
> tar xzf kafka-.tgz
> cd kafka-
> ./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
 
推荐阅读
吻过彩虹的脸_378
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有