zookeeper windowsの下でインストールします.

2101 ワード

最前線:最近会社がしたプロジェクトはdubboとzookeeperを使いました.テストのたびに現地のサービスはテスト機に登録されます.また毎回テスト機のサービスを停止しなければならないので、現地でzookeeperを構築するつもりです.
インストールプロセス
     2.1 http://mirrors.hust.edu.cn/apache/zookeeper/ 私のバージョンは 3.3.6
     2.2 解圧はE:\zookeeper-33.6までです. 
     3.3 ディレクトリconfで作成 zoo.cfgファイルは、デフォルトではこのファイルをロードします.ファイルの内容は直接copyのsampleの中にあります.
          
Javaコード  
  • # The number of milliseconds of each tick         
    tickTime=2000
    # The number of ticks that the initial 
    # synchronization phase can take      ,            ,   10*2=20 
    initLimit=10
    # The number of ticks that can pass between 
    # sending a request and getting an acknowledgement  ZK leader   follower        ,    5*2=10 
    syncLimit=5
    # the directory where the snapshot is stored.
    # do not use /tmp for storage, /tmp here is just 
    # example sakes. #              ,       ,               。 
    dataDir=E:\\zk\\tmp\\zookeeper
    #               
    dataLogDir=E:\\zk\\logs\\zookeeper
    # the port at which the clients will connect ZK          
    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
  •  
       上の説明:http://zookeeper.apache.org/doc/current/zookeeperStarted.html
       そしてcdはbinディレクトリの下でzkServer.cmdを実行して起動に成功しました.
       注意:dataDir 和 dataLogDirディレクトリは自動的に作成されません.手動で作成しなければ起動できません.
       netstat-ano𞓜findot「2181」でOKかどうか確認してください.
       スタートしたJAVAの進行状況をJPSで確認することもできます.
       
    Javaコード 
    C:\windows\system32>jps  
    8068  
    10040 QuorumPeerMain  //     zk   ,       
    10556 Jps
                   :  zkCli.cmd -server 127.0.0.1:2181
       JPSのものについては、自分でJAVAに行ってもいいです.ホーム\binカタログを見に行きます.中には命令がたくさんあります.
    次号に続く