Linux运行环境搭建系列-Kafka安装

Kafka安装

## 官网下载地址:https://kafka.apache.org/downloads,根据需求选择合适的版本
https://downloads.apache.org/kafka/3.5.1/kafka_2.13-3.5.1.tgz
## 解压并删除源文件
tar -zxvf kafka_2.13-3.5.1.tgz && rm -rf kafka_2.13-3.5.1.tgz
## 修改配置文件
cd kafka_2.13-3.5.1/config && vim server.properties
## 添加对外暴露端口,这里最好写ip地址,写localhost好像在外面连不上
advertised.listeners=PLAINTEXT://IP:9092
## 修改zk连接地址
zookeeper.connect=localhost:2181
## 进入bin目录,启动Kafka
./kafka-server-start.sh -daemon ../config/server.properties
## 以下是通过kafka提供的命令行操作kafka的指令
## 当前kafka是3.5.1,较低版本的kafka命令参数略有不同
## 创建Topic
./kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 6 --topic clicks
## 删除Topic
./kafka-topics.sh --delete --bootstrap-server localhost:9092 --topic clicks
## 查看Topic,kafka低版本使用上面的命令,高版本使用下面的命令
./kafka-topics.sh --zookeeper localhost:2181 --list
./kafka-topics.sh --bootstrap-server localhost:9092 --list
## 向Topic发送数据,测试下面两种方式都可以,不过低版本的话就使用--broker-list就好了
./kafka-console-producer.sh --bootstrap-server localhost:9092 --topic clicks
./kafka-console-producer.sh --broker-list localhost:9092 --topic clicks
## 从Topic消费数据
./kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic clicks

你可能感兴趣的:(部署文档,linux,kafka,运维)