Windows安装kafka 2.13-2.7.0

环境准备:

        1. jdk(我电脑是JDK1.8)安装并配置好;

        2. zookeeper(我电脑是3.4.8)安装配置好并启动;

安装包装备:

        官网下载安装包kafka_2.13-2.7.0;

        官方下载链接:Apache Kafkahttps://kafka.apache.org/downloads

Windows安装kafka 2.13-2.7.0_第1张图片

安装步骤:

        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 fo

你可能感兴趣的:(消息队列,windows,java,kafka)