博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
生产环境Zookeeper集群搭建
阅读量:5729 次
发布时间:2019-06-18

本文共 1994 字,大约阅读时间需要 6 分钟。

三个主机就不提了,直接点

#####安装jdk######

[root@Zk-1 ~]# rpm -ivh jdk-7u76-linux-x64.rpm[root@Zk-1 ~]# vi /etc/profile...export ZOO_HOME=/usr/local/zookeeperexport PATH=$PATH:$ZOO_HOME/binexport JAVA_HOME=/usr/java/jdk1.7.0_76export PATH=$JAVA_HOME/bin:$PATHexport CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar...

####安装zookeeper####

[root@Zk-1 ~]# cd /usr/local[root@Zk-1 ~]# tar -zxf zookeeper-3.4.6-product.tar.gz[root@Zk-1 ~]# rm -f zookeeper-3.4.6-product.tar.gz[root@Zk-1 ~]# mv zookeeper-3.4.6 zookeeper[root@Zk-1 ~]# mkdir /data[root@Zk-1 ~]# source /etc/profile

######配置zookeeper环境####

[root@Zk-1 ~]# vim /usr/local/zookeeper/conf/zoo.cfg...# The number of milliseconds of each ticktickTime=2000# The number of ticks that the initial # synchronization phase can takeinitLimit=10# The number of ticks that can pass between # sending a request and getting an acknowledgementsyncLimit=5# the directory where the snapshot is stored.# do not use /tmp for storage, /tmp here is just # example sakes.dataDir=/data/# the port at which the clients will connectclientPort=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 dataDirautopurge.snapRetainCount=500# Purge task interval in hours# Set to "0" to disable auto purge featureautopurge.purgeInterval=168server.1=10.0.76.108:2888:3888server.2=10.0.76.109:2888:3888server.3=10.0.76.110:2888:3888...[root@Zk-1 ~]# vim /data/myid...1     #看主机而改...

 

#########启动zookeeper########

[root@Zk-1 ~]# zkServer.sh start[root@Zk-1 ~]# zkServer.sh status...JMX enabled by defaultUsing config: /usr/local/zookeeper/zookeeper-3.4.6/bin/../conf/zoo.cfgMode: follower         #或者leader[root@Zk-1 ~]# jps6213 Jps1932 QuorumPeerMain

 

转载于:https://www.cnblogs.com/lens/p/4893388.html

你可能感兴趣的文章
中外RFID技术差异何在?
查看>>
HDU Problem 1231 最大连续子序列【dp】
查看>>
codeforces B. The Meeting Place Cannot Be Changed【二分】
查看>>
转载--配置WAMP开发环境
查看>>
Kafka详解与总结(二)
查看>>
文章相似度比较
查看>>
Java NIO学习笔记 三 散点/收集 和频道转换
查看>>
web.xml中<load-on-start>n</load-on-satrt>作用
查看>>
python之路---进程
查看>>
python中,如何将字符串转换为数字(将数字转换为整型),字符串的10转换为整型的10,10.5转换为10...
查看>>
1061. Dating (20)
查看>>
第二次实验的感悟
查看>>
【机器学习】一些基本概念及符号系统
查看>>
页面留白问题
查看>>
因为时间少
查看>>
leetcode 【 Best Time to Buy and Sell Stock II 】python 实现
查看>>
推荐15款创建漂亮幻灯片的 jQuery 插件
查看>>
【算法】CRF
查看>>
windows 8 微软拼音输入法
查看>>
Windows UI风格的设计(7)
查看>>