zoukankan      html  css  js  c++  java
  • 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  启动
  • 相关阅读:
    2013-2014 NBA 东西部决赛 + 总决赛合集
    小萌库
    小萌库一周电影大合集
    小萌库
    小萌库- 新海诚那些唯美感人的动漫
    小萌库 一周漫画精彩回顾
    小萌库
    Week10-数据库
    Week9-RabbitMQ、Redis、Mysql
    Week8-python(线程、进程、协程)
  • 原文地址:https://www.cnblogs.com/zhanchaohan/p/10280771.html
Copyright © 2011-2022 走看看