linux上的系统环境变量 在安装zookeeper时不需要配置
创新互联建站专注于企业网络营销推广、网站重做改版、安化网站定制设计、自适应品牌网站建设、H5响应式网站、购物商城网站建设、集团公司官网建设、外贸网站建设、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为安化等各大城市提供网站开发制作服务。1. 下载zookeeper二进制安装包(可以下载附件内容或者到官网下载http://www.apache.org/dyn/closer.cgi/zookeeper/)
2解压到linux上任意一路径 本文新建在了/home/hadoop/下
tar -zxvf zookeeper-3.4.6.tar.gz
本人选择 zookeeper-3.4.6.tar.gz 因为3.4.6版本属于稳定版本
3,配置zookeeper 配置文件
进入 /home/hadoop/zookeeper-3.4.6/conf
cp zoo_sample.cfg zoo.cfg 复制程序包的事例配置文件 命名为zoo.cfg zookeeper默认读取的就是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=/home/hadoop/zookeeper-3.4.6/data dataLogDir=/home/hadoop/zookeeper-3.4.6/dataLogs # the port at which the clients will connect clientPort=12181 # 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=192.168.2.200:12888:13888 server.2=192.168.2.202:12888:13888 server.3=192.168.2.204:12888:13888
dataDir Zookeeper 将写数据的日志文件也保存在这个目录里 dataLogDir Zookeeper 快照文件 端口号 12888 为Zookeeper之间的通信端口号 默认是 2888 端口号 13888 为Zookeeper之间的选举端口号 默认是 3888 每个为Zookeeper集群都有一个leader 如果其中一台机器的leader死掉 会从集群中的机器follow选出的新的Leader。 server.1 server.2 server.3 的来源 构成集群的依据就是 server.1 server.2 server.3 后面的 1,2,3是每个服务器在整个集群中的唯一标识 不能重复 配置时候 需要到 dataDir 目录中执行 echo "1">myid(第一个机器),echo "2">myid(第二个机器),echo "3">myid(第三个机器) 4,启动 zookeeper 执行 /home/hadoop/zookeeper-3.4.6/bin 中的 sh zkServer.sh start 查看执行结果 jps netstat -at|grep 12181
至此 zookeeper的环境搭建已经完成
下节文章将会介绍kafuka的环境搭建
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。