CentOS7 安装 Kafka

CentOS7 安装 Kafka

官网

官网:http://kafka.apache.org/


下载地址:https://www.apache.org/dyn/closer.cgi


Kafak 的安装

下载后解压即可

wget http://mirrors.tuna.tsinghua.edu.cn/apache/kafka/2.1.0/kafka_2.11-2.1.0.tgz


运行,进入解压目录

# 运行 zookeeper
## 前台运行
bin/zookeeper-server-start.sh config/zookeeper.properties
## 后台运行
nohup bin/zookeeper-server-start.sh config/zookeeper.properties
# 运行 kafka
## 前台运行
bin/kafka-server-start.sh config/server.properties
## 后台运行
bin/kafka-server-start.sh -daemon config/server.properties


上一篇:简明Python教程学习笔记_6_面向对象编程


下一篇:集合已修改;可能无法执行枚举操作。