目录
The Cluster ID xxx doesn't match stored clusterId Some(xxx) in meta.properties
启动
kafka-server-start.bat D:\kafka\config\server.properties
注意kafka-server-start.bat在bin\windows下
Linux找同名sh文件即可
创建和查询topic
启动zookeeper和Kafka之后,进入kafka目录
1.创建Topic
1)运行命令: ./bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test1
2181 是zookeeper 端口
2.查看Topic
1)运行命令查看所有的topic: ./bin/kafka-topics.sh --list --zookeeper localhost:2181
Windows下找同名bat文件即可
启动生产者和消费者
kafka-console-producer.bat --bootstrap-server 127.0.0.1:9092 --topic test
kafka-console-consumer.bat --bootstrap-server 127.0.0.1:9092 --topic test
topic注意替换
The Cluster ID xxx doesn't match stored clusterId Some(xxx) in meta.properties
按报错的提示修改meta.properties中的cluster.id
meta.properties是路径是server.propertites里设置的