标签:解压 hosts create cal conf start producer 终端 server
1、安装:
直接网页下载或者命令行下载 wget -c http://mirrors.shu.edu.cn/apache/kafka/1.1.0/kafka_2.12-1.1.0.tgz
bin/zookeeper-server-start.sh -daemon config/zookeeper.properties
|
broker.id=1
|
2、使用:
kafka-topics.sh
创建单分区单副本的 topic test:
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test
|
查看 topic 列表:
bin/kafka-topics.sh --list --zookeeper localhost:2181
|
kafka-console-producer.sh
发送消息:bin/kafka-console-producer.sh --broker-list localhost:9092 --topic testkafka-console-consumer.sh
接收消息并在终端打印:
bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic test --from-beginning
|
bin/kafka-topics.sh --describe --zookeeper localhost:2181 --topic test
|
3、错误处理:Caused by: java.net.UnknownHostException: hostname: unknown error
在/etc/hosts里添加下hostname和127.0.0.1的映射就可以了:比如 127.0.0.1 localhost
参考:
1、http://www.54tianzhisheng.cn/2018/01/04/Kafka/
2、
标签:解压 hosts create cal conf start producer 终端 server
原文地址:https://www.cnblogs.com/shengulong/p/9013282.html