千家信息网

ubuntu16.04系统中怎么安装zookeeper

发表于:2024-10-19 作者:千家信息网编辑
千家信息网最后更新 2024年10月19日,这篇文章给大家介绍ubuntu16.04系统中怎么安装zookeeper,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。zookeeper需要java,见https://my.os
千家信息网最后更新 2024年10月19日ubuntu16.04系统中怎么安装zookeeper

这篇文章给大家介绍ubuntu16.04系统中怎么安装zookeeper,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

zookeeper需要java,见https://my.oschina.net/u/914655/blog/3102583

cd /appwget http://mirror-hk.koddos.net/apache/zookeeper/zookeeper-3.5.5/apache-zookeeper-3.5.5-bin.tar.gztar zxvf apache-zookeeper-3.5.5-bin.tar.gzmv apache-zookeeper-3.5.5-bin zookeepercp conf/zoo.sample.cfg conf/zoo.cfgvim conf/zoo.cfgmkdir datavim data/myidecho 1 > data/myid # 这个确保和下面的server.x后面的数字对应vim /etc/hosts# /etc/hosts# 自定义Hosts10.13.6.1     kafka-node110.13.6.2     kafka-node210.13.6.3     kafka-node3

zoo.cfg

# The number of milliseconds of each ticktickTime=2000# The number of ticks that the initial# synchronization phase can takeinitLimit=10# The number of ticks that can pass between# sending a request and getting an acknowledgementsyncLimit=5# the directory where the snapshot is stored.# do not use /tmp for storage, /tmp here is just# example sakes.dataDir=/app/zookeeper/data# the port at which the clients will connectclientPort=2181# the maximum number of client connections.# increase this if you need to handle more clientsmaxClientCnxns=60# 节点配置信息server.1=kafka-node1:2888:3888server.2=kafka-node2:2888:3888server.3=kafka-node3:2888:3888#server.A=B:C:D# 其中 A 是一个数字,表示这个是第几号服务器;# B 是这个服务器的 ip 地址;# C 表示的是这个服务器与集群中的 Leader 服务器交换信息的端口;# D 表示的是如果集群中的 Leader 服务器故障,需要一个端口来重新进行选举,选出一个新的 Leader,而这个端口就是#用来执行选举时服务器相互通信的端口。## Be sure to read the maintenance section of the# administrator guide before turning on autopurge.## http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance## The number of snapshots to retain in dataDir#autopurge.snapRetainCount=3# Purge task interval in hours# Set to "0" to disable auto purge feature#autopurge.purgeInterval=1

关于ubuntu16.04系统中怎么安装zookeeper就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

0