kafka 安装 创建主题 发送消息

牧云@^-^@ 提交于 2020-03-03 17:13:38

下载

https://mirrors.aliyun.com/apache/kafka/2.3.0/kafka_2.12-2.3.0.tgz

wget https://mirrors.aliyun.com/apache/kafka/2.3.0/kafka_2.12-2.3.0.tgz

解压

tar zxvf kafka_2.12-2.3.0.tgz -C/opt

启动

cd /opt/kafka_2.12-2.3.0/bin
./zookeeper-server-start.sh -daemon ../config/zookeeper.properties
./kafka-server-start.sh ../config/server.properties

创建topic

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

查看topic

./kafka-topics.sh --list --zookeeper localhost:2181

发送消息

/kafka-console-producer.sh --broker-list localhost:9092 --topic test

接收消息

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!