ZooKeeper安装

ZooKeeper安装

ZooKeeper单机安装

  • 官网下载地址

  • 环境

    • centos7
    • jdk8
  • 创建用户zookeeper

    # 创建用户组
    groupadd zookeeper
    # 创建用户
    useradd -d /home/zookeeper -g zookeeper -G zookeeper -m zookeeper
    # 创建密码
    passwd zookeeper
    
  • 上传安装包并解压

    [zookeeper@iZuf62iexj3ztw81eg1cnoZ software]$ ll
    total 35816
    drwxr-xr-x 11 zookeeper zookeeper     4096 Mar  9 11:44 zookeeper-3.4.12
    -rwxr-xr-x  1 zookeeper zookeeper 36667596 Mar  9 11:43 zookeeper-3.4.12.tar.gz
    [zookeeper@iZuf62iexj3ztw81eg1cnoZ software]$ 
    
  • 修改配置文件

    # 进入配置目录
    cd zookeeper-3.4.12/conf/
    # 修改配置文件名
    cp zoo_sample.cfg zoo.cfg
    # 修改配置文件
    vi zoo.cfg
    
    # The number of milliseconds of each tick
    # tickTime:CS通信心跳数
    # Zookeeper 服务器之间或客户端与服务器之间维持心跳的时间间隔,也就是每个 tickTime 时间就会发送一个心跳。tickTime以毫秒为单位。
    tickTime=2000
    
    # The number of ticks that the initial 
    # synchronization phase can take
    # initLimit:LF初始通信时限
    # 集群中的follower服务器(F)与leader服务器(L)之间初始连接时能容忍的最多心跳数(tickTime的数量)。
    initLimit=10
    
    # The number of ticks that can pass between 
    # sending a request and getting an acknowledgement
    # syncLimit:LF同步通信时限
    # 集群中的follower服务器与leader服务器之间请求和应答之间能容忍的最多心跳数(tickTime的数量)。
    syncLimit=5
    
    # the directory where the snapshot is stored.
    # do not use /tmp for storage, /tmp here is just 
    # example sakes.
    # dataDir:数据文件目录
    # zookeeper保存数据的目录,默认情况下,Zookeeper将写数据的日志文件也保存在这个目录里。
    dataDir=/home/zookeeper/software/zookeeper-3.4.12/data
    
    # dataLogDir:日志文件目录
    # zookeeper保存日志文件的目录。
    dataLogDir=/home/zookeeper/software/zookeeper-3.4.12/logs
    
    # the port at which the clients will connect
    # clientPort:客户端连接端口
    # 客户端连接 Zookeeper 服务器的端口,Zookeeper 会监听这个端口,接受客户端的访问请求。
    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
    
  • 命令汇总

    # 启动命令
    ./bin/zkServer.sh start
    # 停止命令
    ./bin/zkServer.sh stop  
    # 重启命令
    ./bin/zkServer.sh restart
    # 状态查看命令
    ./bin/zkServer.sh status
    

ZooKeeper集群单机部署

  • 部署规划

    ip client端服务端口 zk通讯端口 zk选举端口
    127.0.0.1 2181 2887 3887
    127.0.0.1 2182 2888 3888
    127.0.0.1 2183 2889 3889
  • 官网下载地址

  • 环境

    • centos7
    • jdk8
  • 创建用户zookeeper

    # 创建用户组
    groupadd zookeeper
    # 创建用户
    useradd -d /home/zookeeper -g zookeeper -G zookeeper -m zookeeper
    # 创建密码
    passwd zookeeper
    
  • 上传安装包并解压三份

    [zookeeper@iZuf62iexj3ztw81eg1cnoZ software]$ ll
    total 35824
    drwxr-xr-x 10 zookeeper zookeeper     4096 Mar 10 16:56 zk1
    drwxr-xr-x 10 zookeeper zookeeper     4096 Mar 10 16:56 zk2
    drwxr-xr-x 10 zookeeper zookeeper     4096 Mar 10 16:56 zk3
    -rwxr-xr-x  1 zookeeper zookeeper 36667596 Mar  9 11:43 zookeeper-3.4.12.tar.gz
    [zookeeper@iZuf62iexj3ztw81eg1cnoZ software]$ 
    
  • 创建myid文件

    # zk1服务器
    mkdir zk1/data
    cd zk1/data/
    
    [zookeeper@iZuf62iexj3ztw81eg1cnoZ data]$ pwd
    /home/zookeeper/software/zk1/data
    [zookeeper@iZuf62iexj3ztw81eg1cnoZ data]$
    
    # 创建myid文件,并写入内容1
    [zookeeper@iZuf62iexj3ztw81eg1cnoZ data]$ cat myid
    1
    [zookeeper@iZuf62iexj3ztw81eg1cnoZ data]$ 
    
    # zk2, zk3服务器分别创建myid文件,分别写入2,3
    
  • 配置文件

    # 进入配置目录
    cd zk1/conf/
    # 修改配置文件名
    cp zoo_sample.cfg zoo.cfg
    

    zk1-zoo.cfg

    # The number of milliseconds of each tick
    # tickTime:CS通信心跳数
    # Zookeeper 服务器之间或客户端与服务器之间维持心跳的时间间隔,也就是每个 tickTime 时间就会发送一个心跳。tickTime以毫秒为单位。
    tickTime=2000
    
    # The number of ticks that the initial 
    # synchronization phase can take
    # initLimit:LF初始通信时限
    # 集群中的follower服务器(F)与leader服务器(L)之间初始连接时能容忍的最多心跳数(tickTime的数量)。
    initLimit=10
    
    # The number of ticks that can pass between 
    # sending a request and getting an acknowledgement
    # syncLimit:LF同步通信时限
    # 集群中的follower服务器与leader服务器之间请求和应答之间能容忍的最多心跳数(tickTime的数量)。
    syncLimit=5
    
    # the directory where the snapshot is stored.
    # do not use /tmp for storage, /tmp here is just 
    # example sakes.
    # dataDir:数据文件目录
    # zookeeper保存数据的目录,默认情况下,Zookeeper将写数据的日志文件也保存在这个目录里。
    dataDir=/home/zookeeper/software/zk1/data
    # dataLogDir:日志文件目录
    # zookeeper保存日志文件的目录。
    dataLogDir=/home/zookeeper/software/zk1/logs
    
    # the port at which the clients will connect
    # clientPort:客户端连接端口
    # 客户端连接 Zookeeper 服务器的端口,Zookeeper 会监听这个端口,接受客户端的访问请求。
    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.myid文件中的值=ip:集群内部通讯地址:集群选举端口
    server.1=127.0.0.1:2887:3887
    server.2=127.0.0.1:2888:3888
    server.3=127.0.0.1:2889:3889
    

    zk2-zoo.cfg

    # The number of milliseconds of each tick
    # tickTime:CS通信心跳数
    # Zookeeper 服务器之间或客户端与服务器之间维持心跳的时间间隔,也就是每个 tickTime 时间就会发送一个心跳。tickTime以毫秒为单位。
    tickTime=2000
    
    # The number of ticks that the initial 
    # synchronization phase can take
    # initLimit:LF初始通信时限
    # 集群中的follower服务器(F)与leader服务器(L)之间初始连接时能容忍的最多心跳数(tickTime的数量)。
    initLimit=10
    
    # The number of ticks that can pass between 
    # sending a request and getting an acknowledgement
    # syncLimit:LF同步通信时限
    # 集群中的follower服务器与leader服务器之间请求和应答之间能容忍的最多心跳数(tickTime的数量)。
    syncLimit=5
    
    # the directory where the snapshot is stored.
    # do not use /tmp for storage, /tmp here is just 
    # example sakes.
    # dataDir:数据文件目录
    # zookeeper保存数据的目录,默认情况下,Zookeeper将写数据的日志文件也保存在这个目录里。
    dataDir=/home/zookeeper/software/zk2/data
    # dataLogDir:日志文件目录
    # zookeeper保存日志文件的目录。
    dataLogDir=/home/zookeeper/software/zk2/logs
    
    # the port at which the clients will connect
    # clientPort:客户端连接端口
    # 客户端连接 Zookeeper 服务器的端口,Zookeeper 会监听这个端口,接受客户端的访问请求。
    clientPort=2182
    
    # 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.myid文件中的值=ip:集群内部通讯地址:集群选举端口
    server.1=127.0.0.1:2887:3887
    server.2=127.0.0.1:2888:3888
    server.3=127.0.0.1:2889:3889
    

    zk3-zoo.cfg

    # The number of milliseconds of each tick
    # tickTime:CS通信心跳数
    # Zookeeper 服务器之间或客户端与服务器之间维持心跳的时间间隔,也就是每个 tickTime 时间就会发送一个心跳。tickTime以毫秒为单位。
    tickTime=2000
    
    # The number of ticks that the initial 
    # synchronization phase can take
    # initLimit:LF初始通信时限
    # 集群中的follower服务器(F)与leader服务器(L)之间初始连接时能容忍的最多心跳数(tickTime的数量)。
    initLimit=10
    
    # The number of ticks that can pass between 
    # sending a request and getting an acknowledgement
    # syncLimit:LF同步通信时限
    # 集群中的follower服务器与leader服务器之间请求和应答之间能容忍的最多心跳数(tickTime的数量)。
    syncLimit=5
    
    # the directory where the snapshot is stored.
    # do not use /tmp for storage, /tmp here is just 
    # example sakes.
    # dataDir:数据文件目录
    # zookeeper保存数据的目录,默认情况下,Zookeeper将写数据的日志文件也保存在这个目录里。
    dataDir=/home/zookeeper/software/zk3/data
    # dataLogDir:日志文件目录
    # zookeeper保存日志文件的目录。
    dataLogDir=/home/zookeeper/software/zk3/logs
    
    # the port at which the clients will connect
    # clientPort:客户端连接端口
    # 客户端连接 Zookeeper 服务器的端口,Zookeeper 会监听这个端口,接受客户端的访问请求。
    clientPort=2183
    
    # 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.myid文件中的值=ip:集群内部通讯地址:集群选举端口
    server.1=127.0.0.1:2887:3887
    server.2=127.0.0.1:2888:3888
    server.3=127.0.0.1:2889:3889
    
  • 启动

    # zk1
    /home/zookeeper/software/zk1/bin/zkServer.sh start
    # zk2
    /home/zookeeper/software/zk2/bin/zkServer.sh start
    # zk3
    /home/zookeeper/software/zk3/bin/zkServer.sh start
    
  • 查看状态

    # zk1
    /home/zookeeper/software/zk1/bin/zkServer.sh status
    ----------------
    ZooKeeper JMX enabled by default
    Using config: /home/zookeeper/software/zk1/bin/../conf/zoo.cfg
    Mode: follower
    ----------------
    # zk2
    /home/zookeeper/software/zk2/bin/zkServer.sh status
    ----------------
    ZooKeeper JMX enabled by default
    Using config: /home/zookeeper/software/zk2/bin/../conf/zoo.cfg
    Mode: leader
    ----------------
    # zk3
    /home/zookeeper/software/zk3/bin/zkServer.sh status
    ----------------
    ZooKeeper JMX enabled by default
    Using config: /home/zookeeper/software/zk3/bin/../conf/zoo.cfg
    Mode: follower
    ----------------
    

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,657评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,662评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,143评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,732评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,837评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,036评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,126评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,868评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,315评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,641评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,773评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,470评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,126评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,859评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,095评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,584评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,676评论 2 351

推荐阅读更多精彩内容