Confluent

来自Gea-Suan Lin's Wiki
Gslin讨论 | 贡献2019年3月5日 (二) 20:55的版本 →‎設定ZooKeeper
跳到导航 跳到搜索

Confluent是一家公司,也是该公司的Apache Kafka产品名。

安装

当然要先装Java

sudo apt install -y default-jre

这边只安装社群版本:

wget -qO - https://packages.confluent.io/deb/5.1/archive.key | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://packages.confluent.io/deb/5.1 stable main"
sudo apt install -y confluent-community-2.11

设定ZooKeeper

修改/etc/kafka/zookeeper.properties

#
tickTime=2000
dataDir=/var/lib/zookeeper/
clientPort=2181
initLimit=5
syncLimit=2
server.1=1.2.3.4:2888:3888
server.2=5.6.7.8:2888:3888
server.3=9.10.11.12:2888:3888
autopurge.snapRetainCount=3
autopurge.purgeInterval=24

新增/var/lib/zookeeper/myid,每一台都需要不同,123

1

然后修改档案拥有人:

sudo chown cp-kafka:confluent /var/lib/zookeeper/myid

相关连结

外部链接