kafka单机测试环境搭建

参考官网:http://kafka.apache.org/quickstart

      kafka在使用之前必须先启动zookeeper,但kafka的安装包中都带有zookeeper,所以小编没有单独下载、安装zookeeper。

kafka_2.11-1.0.0安装包下载地址:https://www.apache.org/dyn/closer.cgi?path=/kafka/1.0.0/kafka_2.11-1.0.0.tgz

1.解压kafka安装包。

这里写图片描述

2.启动zookeeper

内置的zookeeper的配置文件在kafka_2.11-1.0.0/config目录下,一般不需要配置。

这里写图片描述

zookeeper的启动命令在kafka_2.11-1.0.0/bin目录下。

这里写图片描述

在kafka_2.11-1.0.0目录下输入启动命令
bin/zookeeper-server-start.sh config/zookeeper.properties
出现下面界面代表启动成功,注意不是卡住了,我就是以为卡住了,找了一下午的问题。。。。。

这里写图片描述

3.启动kafka

bin/kafka-server-start.sh config/server.properties
出现下面界面代表启动成功

这里写图片描述

4.创建topic

bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test

5.发送测试信息(生产者)

bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning

//弹出“>”符号后输入下面两行测试信息

This is a message
This is another message

6.接收信息(消费者)

bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning

7.接收到下列信息代表成功

This is a message
This is another message
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值