欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Ubuntu下安装Kafka

程序员文章站 2024-01-12 11:59:16
...
  • Ubuntu 18.04 LTS
  • JDK 8
  • Kafka 2.12-2.4.0

安装Java SDK

$ apt update
$ apt install openjdk-8-jdk

安装Kafka

新版Kafka已经集成ZooKeeper,无需单独安装

$ wget http://mirrors.tuna.tsinghua.edu.cn/apache/kafka/2.4.0/kafka_2.12-2.4.0.tgz
$ tar -zxvf kafka_2.12-2.4.0.tgz

修改配置文件

$ cd kafka_2.12_2.4.0/
$ vi config/server.properties

需要修改的项
Ubuntu下安装Kafka

启动ZooKeeper

$ bin/zookeeper-server-start.sh -daemon config/zookeeper.properties

启动Kafka

$ bin/kafka-server-start.sh -daemon config/server.properties

创建Topic

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

查看Topic列表

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

发送消息

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

监听消息

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

原文:https://www.jianshu.com/p/ab005f8f3e26