• zookeeper-3.5.4-beta安装


    官网地址

    https://zookeeper.apache.org/

    下载文件解压进入conf目录下将zoo_sample.cfg名称修改为zoo.cfg

    # The number of milliseconds of each tick
    tickTime=2000
    # The number of ticks that the initial 
    # synchronization phase can take
    initLimit=10
    # The number of ticks that can pass between 
    # sending a request and getting an acknowledgement
    syncLimit=5
    # the directory where the snapshot is stored.
    # do not use /tmp for storage, /tmp here is just 
    # example sakes.
    dataDir=F:\es\zookeeper\data
    dataLogDir=F:\es\zookeeper\datalogs
    # the port at which the clients will connect
    clientPort=2181
    # the maximum number of client connections.
    # increase this if you need to handle more clients
    #maxClientCnxns=60
    #
    # 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
    
    #server.1=127.0.0.1:1288:1388
    #server.2=192.168.2.233:1288:1388
    #server.3=192.168.2.122:1288:1388
    #server.4=192.168.2.157:1288:1388
    #server.5=192.168.2.194:1288:1388

     集群的话根目录创建data文件夹,文件夹下创建data文件文件里写上当前机器编码最好用数字表示

    进入bin目录

    zkserver  启动
  • 相关阅读:
    UE4 UnLoadStreamLevel
    UE4 Xml读写
    UE4 保存为bitmap
    C++ 不定参数(转)
    C++ 默认参数(转载)
    Tuple初探
    遗传算法matlab实现
    蚁群算法matlab实现
    汉诺塔问题C++实现
    较优H圈matlab实现
  • 原文地址:https://www.cnblogs.com/zhanchaohan/p/10280771.html
Copyright © 2020-2023  润新知