mirrors.cnnic.cn/apache/zookeeper/zookeeper-3.4.6/zookeeper-3.4.6.tar.gz
2)解壓
tar zxvf zookeeper-3.4.6.tar.gz3)配置
cd zookeeper-3.4.6cp -rf conf/zoo_sample.cfg conf/zoo.cfg
vim zoo.cfgzoo.cfg:
# the number of milliseconds of each tick4)啟動zookeeperticktime=2000
# the number of ticks that the initial
# synchronization phase can take
initlimit=10
# the number of ticks that can pass between
# sending a request and getting an acknowledgement
synclimit=5
# the directory
where the snapshot is
stored.
# do not use /tmp for storage, /tmp here is
just
# example sakes.
datadir
zkdata #這個目錄是預先建立的
2) 解壓:
tar -zxf kafka_2.10-0.8.2.1.tgz3)啟動kafka
備註:要掛到後台使用:
sh bin/kafka-server-start.sh config/server.properties &4)新建乙個topic
備註:要掛到後台使用:
sh kafka-topics.sh --create --topic kafkatopic --replication-factor 1 --partitions 1 --zookeeper localhost:2181 &5) 把kafka的生產者啟動起來:
備註:要掛到後台使用:
sh kafka-console-producer.sh --broker-list localhost:9092 --sync --topic kafkatopic &6)另開乙個終端,把消費者啟動起來:
備註:要掛到後台使用:
sh kafka-console-consumer.sh --zookeeper localhost:2181 --topic kafkatopic --from-beginning &
kafka zookeeper環境搭建
作業系統 win7 64位 zookeeper版本 zookeeper 3.4.11 kafka版本 kafka 2.11 1.1.0 1 zookeeper 安裝 進入d soft zookeeper 3.4.11 conf 目錄複製檔案zoo sample.cfg重新命名為zoo.cfg zoo...
Kafka Zookeeper 單節點測試
啟動單節點zookeeper kafka,主要用來做測試使用。阿里映象站 這裡以 zookeeper 3.4.14 為例 阿里映象站 這裡以kafka 2.11 2.1.1為例。kafka 有自帶 zookeeper,可以使用單獨安裝的 zookeeper。tar zxvf kafka 2.11 2...
了解執行kafka zookeeper 一
前幾天接觸到kafka,從kafka的部署中又認識到了zookeeper,從而了解到其的強大。broker producer consumer zookeeper關係 kafka server就是broker,broker是存資料的,producer把資料給broker,consumer從broke...