Zookeeper 安装
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
Zookeeper 安装
本地模式
安装前准备
- 安装 Jdk 参考博客
- 拷贝 Zookeeper 安装包到 Linux 系统下
- 解压到指定目录
tar -zxvf zookeeper-x.x.x.tar.gz -C /opt/module/
配置修改
- 将/opt/module/zookeeper-3.4.10/conf 这个路径下的 zoo_sample.cfg 修改为 zoo.cfg;
mv zoo_sample.cfg zoo.cfg
- 打开 zoo.cfg 文件,修改 dataDir 路径:
vim zoo.cfg
# 修改如下内容:
dataDir=/opt/module/zookeeper-3.4.10/zkData
- 在/opt/module/zookeeper-3.4.10/这个目录上创建 zkData 文件夹
mkdir zkData
操作 Zookeeper
- 启动 Zookeeper
bin/zkServer.sh start
- 查看进程是否启动
jps
- 查看状态
bin/zkServer.sh status
- 启动客户端
bin/zkCli.sh
- 退出客户端
quit
- 停止 Zookeeper
bin/zkServer.sh stop
配置参数解读
Zookeeper中的配置文件zoo.cfg中参数含义解读如下:
- tickTime =2000:通信心跳数,Zookeeper 服务器与客户端心跳时间,单位毫秒
Zookeeper使用的基本时间,服务器之间或客户端与服务器之间维持心跳的时间间隔,也就是每个tickTime时间就会发送一个心跳,时间单位为毫秒。
它用于心跳机制,并且设置最小的session超时时间为两倍心跳时间。(session的最小超时时间是2*tickTime) - initLimit =10:LF 初始通信时限
集群中的Follower跟随者服务器与Leader领导者服务器之间初始连接时能容忍的最多心跳数(tickTime的数量),用它来限定集群中的Zookeeper服务器连接到Leader的时限。 - syncLimit =5:LF 同步通信时限
集群中Leader与Follower之间的最大响应时间单位,假如响应超过syncLimit *tickTime,Leader认为Follwer死掉,从服务器列表中删除Follwer。 - dataDir:数据文件目录+数据持久化路径
主要用于保存 Zookeeper 中的数据。 - clientPort =2181:客户端连接端口
监听客户端连接的端口。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)