当前位置:   article > 正文

完全分布式下的zookeeper配置

完全分布式下的zookeeper配置

前言:

        事先已经配置好了3台hadoop集群,分别为hadoop200、hadoop201、hadoop202

1 zookeeper的安装与配置环境变量

 配置环境变量:

把如下代码插入到~/.bashrc文件末尾

  1. export ZOOKEEPER_HOME=/usr/local/zookeeper
  2. export PATH=$PATH:${ZOOKEEPER_HOME}/bin:${ZOOKEEPER_HOME}

然后使用source ~/.bashrc 使之生效

将解压好的zookeeper文件夹和~/.bashrc 更新到其他节点上:

  1. rsync -rvl /usr/local/zookeeper hadoop@hadoop201:/usr/local
  2. rsync -rvl /usr/local/zookeeper hadoop@hadoop202:/usr/local
  1. rsync -rvl ~/.bashrc hadoop@hadoop201:~/.bashrc
  2. rsync -rvl ~/.bashrc hadoop@hadoop202:~/.bashrc

别忘了更新过后的~/.bashrc记得source一下

2 zookeeper的配置

2.1 配置myid

 进入zookeeper目录下创建zkData目录,然后再zkData下创建myid文件

2.2 配置zoo.cfg

 然后进入zookeeper/conf复制一份zoo_sample.cfg并重新命名为zoo.cfg

然后将如下内容添加其中:

  1. # The number of milliseconds of each tick
  2. tickTime=2000
  3. # The number of ticks that the initial
  4. # synchronization phase can take
  5. initLimit=10
  6. # The number of ticks that can pass between
  7. # sending a request and getting an acknowledgement
  8. syncLimit=5
  9. # the directory where the snapshot is stored.
  10. # do not use /tmp for storage, /tmp here is just
  11. # example sakes.
  12. dataDir=/usr/local/zookeeper/zkData #这里是zookeeper的数据路径
  13. # the port at which the clients will connect
  14. clientPort=2181
  15. # the maximum number of client connections.
  16. # increase this if you need to handle more clients
  17. #maxClientCnxns=60
  18. #
  19. # Be sure to read the maintenance section of the
  20. # administrator guide before turning on autopurge.
  21. #
  22. # http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance
  23. #
  24. # The number of snapshots to retain in dataDir
  25. #autopurge.snapRetainCount=3
  26. # Purge task interval in hours
  27. # Set to "0" to disable auto purge feature
  28. #autopurge.purgeInterval=1
  29. #.200 .201是myid里面设置的id hadoop200 hadoop201是自己的主机名
  30. server.200=hadoop200:2888:3888
  31. server.201=hadoop201:2888:3888
  32. server.202=hadoop202:2888:3888

然后分发到其他节点(更新了zkData文件和conf/zoo.cfg文件):

  1. rsync -rvl /usr/local/zookeeper/ hadoop@hadoop201:/usr/local/zookeeper/
  2. rsync -rvl /usr/local/zookeeper/ hadoop@hadoop202:/usr/local/zookeeper/

最后进入其余节点更改myid里面的内容为201和202

最后启动zookeeper

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/459041
推荐阅读
相关标签
  

闽ICP备14008679号