kafka集群安装
Posted kisf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kafka集群安装相关的知识,希望对你有一定的参考价值。
1. 下载
wget http://mirror.bit.edu.cn/apache/kafka/0.10.2.1/kafka_2.12-0.10.2.1.tgz
2. 解压
3. 修改配置文件
vim kafka_2.12-0.10.2.1/config/server.properties
#broker.id=0 每台服务器的broker.id都不能相同 port=9092 #hostname host.name=10.112.29.4 #在log.retention.hours=168 下面新增下面三项 message.max.byte=5242880 default.replication.factor=2 replica.fetch.max.bytes=5242880 #设置zookeeper的连接端口 zookeeper.connect=10.112.28.245:2181,10.112.28.229:2181,10.112.28.241:2181
4. 启动
./bin/kafka-server-start.sh -daemon config/server.properties
以上是关于kafka集群安装的主要内容,如果未能解决你的问题,请参考以下文章