环境:ubuntu14.04
版本:jdk1.8,zookeeper 3.4.10,kafka 2.11
搭建步骤:
1. 搭建zookeeper集群
参考链接:zookeeper集群搭建
2. 下载kafka源码包,并上传到服务器
下载链接:http://mirrors.tuna.tsinghua.edu.cn/apache/kafka/1.0.0/kafka_2.11-1.0.0.tgz
3. 解压kafka源码包
tar -zxvf kafka_2.11-1.0.0.tgz
4. 创建kafka-log文件夹
mkdir -p ~/data/kafkalog
5. 修改kafka配置文件
6. 启动kafka
## 前台启动-启动无误,使用后台启动命令 ./bin/kafka-server-start.sh config/server.properties ## 后台启动 nohup ./bin/kafka-server-start.sh config/server.properties &
时间: 2024-09-28 13:05:51