美文网首页
【原创】六、Zokeeper分布式集群部署

【原创】六、Zokeeper分布式集群部署

作者: wind001 | 来源:发表于2017-01-25 12:59 被阅读0次

    一、Zookeeper集群几个配置项

    tickTime:zookeeper服务器之间或客户端与服务器之间维持心跳的时间间隔,单位是毫秒。

    datadir:zookeeper存放文件的位置。

    inltLimit:zookeeper接受客户端初始化链接时最长能忍受多少个心跳时间间隔数。

    syncLimit:leader与follower之间发送消息,请求的应答时间的长度。不能超过多少个tickTime。

    1、创建zoo.cfg配置文件,在安装路径中创建data目录,修改zoo.cfg

    2、在data下创建myid并赋值为1

    3、分别拷贝到另外两台服务器,并修改myid

    [jit@bigdata01 app]$ scp -r zookeeper-3.4.6/ bigdata02.xxxx.com:/home/jit/app

    二、启动、查看各个节点状态

    三、Zookeeper客户端命令行连接及基本命令使用(create、ls、get、rmr等命令)

    zookeeper详细介绍

    http://blog.csdn.net/zipo/article/details/54728512

    相关文章

      网友评论

          本文标题:【原创】六、Zokeeper分布式集群部署

          本文链接:https://www.haomeiwen.com/subject/fhbtittx.html