zookeeper单机版安装

一、zookeeper单机版安装

下载zookeeper-3.4.6.tar.gz

解压在/opt目录下

在/home/zookeeper-3.4.6目录下创建以下目录:

mkdir data

mkdir logs

将/opt/zookeeper-3.4.6/conf/下的zoo.sample.cfg 文件拷贝一份,命名为zoo.cfg

cp zoo_sample.cfg zoo.cfg

修改zoo.cfg的配置文件:

vi 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=/tmp/zookeeper
# the port at which the clients will connect
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

其他默认,dataDir修改成刚才新建的data目录,同时新增dataLogDir:

dataDir=/home/zookeeper-3.4.9/data

dataLogDir=/home/zookeeper-3.4.9/logs

保存,单机版配置已经完成。

vi /root/.bash_profile 

# zookeeper env
export ZOOKEEPER_HOME=/home/zookeeper-3.4.9
export PATH=$ZOOKEEPER_HOME/bin:$PATH

source /root/.bash_profile 

启动zk:

zkServer.sh start

查看状态:

zkServer.sh status

 

时间: 2024-10-13 12:28:26

zookeeper单机版安装的相关文章

ZooKeeper 单机版安装和配置

Zookeeper 下载链接:http://mirrors.shu.edu.cn/apache/zookeeper/ #wget https://mirrors.tuna.tsinghua.edu.cn/apache/zookeeper/zookeeper-3.4.14/zookeeper-3.4.14.tar.gz #tar  xvzf zookeeper-3.4.14.tar.gz -C /usr/local/ #cd  /usr/local/;mv zookeeper-3.4.14 zoo

【ZooKeeper系列】1.ZooKeeper单机版、伪集群和集群环境搭建

ZooKeeper安装模式主要有3种: 单机版(Standalone模式)模式:仅有一个ZooKeeper服务 伪集群模式:单机多个ZooKeeper服务 集群模式:多机多ZooKeeper服务 1 单机版(Standalone模式)安装 ZooKeeper官网下载地址:http://zookeeper.apache.org/releases.html#download 如图所示进行操作: 注意一点,如果不想当小白鼠,请务必下稳定版(stable release),非稳定版安装时可能出各种未知的

1.1 Zookeeper单机安装

zookeeper 单机安装配置 1.安装前准备 linux系统(此文环境为Centos6.5) Zookeeper安装包,官网https://zookeeper.apache.org/,演示版本zookeeper-3.4.7.tar.gz 2.解压:tar -zxvf zookeeper-3.4.7.tar.gz 3.修改配置文件 cd zookeeper-3.4.7/conf cp zoo_sample.cfg zoo.cfg 复制模板配置文件为zoo.cfg vim zoo.cfg 修改配

zookeeper的安装

OS:CentOS 7.2.1511 (Core) JDK:1.8 zookeeper:3.4.9 服务器列表: 172.31.23.121 172.31.49.27 172.31.17.19 一,安装java JDK 检查系统是否已安装jdk: rpm -qa | grep java 如已安装先卸载: rpm -qa | grep java | xargs rpm -e --nodeps 建立JAVA_HOME目录 mkdir /usr/local/java/ 将二进制包放入JAVA_HOME

ZooKeeper的安装、配置、启动和使用(一)——单机模式

ZooKeeper的安装非常简单,它的工作模式分为单机模式.集群模式和伪集群模式,本博客旨在总结ZooKeeper单机模式下如何安装.配置.启动和使用: 一.安装配置ZooKeeper(在Windows操作系统下) a.下载ZooKeeper压缩安装文件,这里下载稳定版--zookeeper-3.4.5.tar.gz b.解压压缩文件,这里将其解压到C盘根目录下,打开解压后的文件夹,得到下图: c.点击上图名为"conf"的文件夹,可以看到下图: d.用记事本打开上图名为"z

Centos下zookeeper的安装和搭建

重新捡回linux,首先说下zookeeper 的安装吧 系统:Centos6.5 工具SecureCRT 虚拟机:Oracle VM 1.用sftp把zookeeper-3.4.5.tar.gz,put到linux 系统上 右键点击连接会话,再点击连接SFTP标签页,然后cd到你要放压缩包的目录下 ,然后在lcd到本地系统的压缩包目录下,然后 put 压缩包的命令 eg:put d:/temp/zookeeper-3.4.5.tar.gz ok了 ,前提是你的系统 已经联网了哈哈,被这个联网烦

zookeeper的安装和配置

1.将zookeeper-3.4.5.tar.gz这个文件上传到huanghe的/usr/local目录下 2.进入local目录下,执行解压      tar -zxvf  zookeeper-3.4.5.tar.gz 3.将解压后生成的zookeeper-3.4.5文件文件夹重命名为zk mv zookeeper-3.4.5  zk 然后设置zookeeper的系统环境变量 vi  /etc/profile 设置完后执行执行 source /etc/profile 然后将配置文件分别拷贝到h

1 week110的zookeeper的安装 + zookeeper提供少量数据的存储

下面是在weekend110上的zookeeper的安装 在此之前,先进行快照备份. 在这里,为了后续的zookeeper配置需要,在/home/hadoop/下,新建data目录,再新建zookeeper-3.4.6目录,再新建zkdata目录. 默认情况下,事务日志和数据目录是存放在一起,我们这里,要将它们分开. dataDir=/home/hadoop/data/zookeeper-3.4.6/zkdata dataLogDir=/home/hadoop/data/zookeeper-3.

zookeeper 的安装和伪集群配置

zookeeper的安装 tar -zxvf  zookeeper-3.4.8.tar.gz mv zookeeper-3.4.8 /usr/local/ 修改zk的配置文件 cp zoo_sample.cfg zoo.cfg tickTime: zookeeper中使用的基本时间单位, 毫秒值. dataDir: 数据目录. 可以是任意目录. dataLogDir: log目录, 同样可以是任意目录. 如果没有设置该参数, 将使用和dataDir相同的设置. clientPort: 监听cli