环境准备:
1. jdk(我电脑是JDK1.8)安装并配置好;
2. zookeeper(我电脑是3.4.8)安装配置好并启动;
安装包装备:
官网下载安装包kafka_2.13-2.7.0;
官方下载链接:Apache Kafka
https://kafka.apache.org/downloads

安装步骤:
1. 解压压缩包;
2. 修改配置文件:kafka_2.13-2.7.0\config\server.properties,主要包括listeners、logs以及zookeeper.connect的配置。
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# see kafka.server.KafkaConfig for additional details and defaults
############################# Server Basics #############################
# The id of the broker. This must be set to a unique integer for each broker.
broker.id=0
#

本文详细介绍了如何在Windows环境下安装配置Kafka 2.13-2.7.0,包括JDK和Zookeeper的先决条件,从官方网站下载Kafka安装包,修改server.properties配置文件,特别是解决监听器配置问题,以及启动Kafka的步骤。最后,通过创建主题、生成者和消费者进行测试,验证Kafka已成功安装并可正常使用。
最低0.47元/天 解锁文章
2143

被折叠的 条评论
为什么被折叠?



