kafka_2.11-2.2.0安装与配置
Posted 程序员大宝(coder-dabao)
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kafka_2.11-2.2.0安装与配置相关的知识,希望对你有一定的参考价值。
1、下载kafka_2.11-2.2.0
2、zk操作
1、启动zookeeper
# nohup /data/apps/kafka_2.11-2.2.0/bin/zookeeper-server-start.sh /data/apps/kafka_2.11-2.2.0/config/zookeeper.properties > /data/apps/kafka_2.11-2.2.0/zk.log 2>&1 &
2、停止zookeeper
# /data/apps/kafka_2.11-2.2.0/bin/zookeeper-server-stop.sh
3 kafka操作
1、启动
# nohup /data/apps/kafka_2.11-2.2.0/bin/kafka-server-start.sh /data/apps/kafka_2.11-2.2.0/config/server.properties > /data/apps/kafka_2.11-2.2.0/kafka.log 2>&1 &
2、停止
# /data/apps/kafka_2.11-2.2.0/bin/kafka-server-stop.sh
4 测试
# cd /data/apps/kafka_2.11-2.2.0
# 创建topic
$ sh bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test
# 查看topic
$ sh bin/kafka-topics.sh --list --zookeeper localhost:2181
# 发送消息
$ sh bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test
This is a message
This is another message
# 消费消息
$ sh bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning
This is a message
This is another message
以上是关于kafka_2.11-2.2.0安装与配置的主要内容,如果未能解决你的问题,请参考以下文章