apache-zookeeper-3.7.1 安装部署教程

 更新时间:2023年02月03日 11:31:00   作者:大飞_dafei  
这篇文章主要介绍了apache-zookeeper-3.7.1 安装部署,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

apache-zookeeper-3.7.1 安装部署

下载地址:https://mirrors.bfsu.edu.cn/apache/zookeeper/

apache-zookeeper-3.7.1
1.下载直接解压,进入../conf/目录下复制一份zoo_sample.conf, 改名为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

## Metrics Providers
#
# https://prometheus.io Metrics Exporter
#metricsProvider.className=org.apache.zookeeper.metrics.prometheus.PrometheusMetricsProvider
#metricsProvider.httpPort=7000
#metricsProvider.exportJvmInfo=true

dataDir=D:\\soft_position\\Java\\zzz_test\\apache-zookeeper-3.7.1\\data 
dataLogDir=D:\\soft_position\\Java\\zzz_test\\apache-zookeeper-3.7.1\\log

admin.serverPort=8887

配置参考二:

# dataDir里放的是内存数据结构的snapshot
dataDir=../data
# 客户端连接zookeeper服务的端口
clientPort=2183
# 服务启动默认8080,避免和其他服务冲突配置8888
admin.serverPort=8888
# 配置zookeeper 的默认账号密码, 用于登入dubbo
admin.root.user.name=root
admin.root.user.password=root

2.启动zookeeper,进入../bin/目录,Windows环境启动文件为zkServer.cmd,Linux环境启动文件为zkServer.sh

zookeeper 启动
#在这个目录下面
D:\soft_position\Java\zzz_test\apache-zookeeper-3.7.1\bin
#双击 zkServer.cmd **** 启动**********

其他参考地址: 安装注册中心 zookeeper

到此这篇关于apache-zookeeper-3.7.1 安装部署的文章就介绍到这了,更多相关apache-zookeeper-3.7.1 安装内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:

相关文章

  • Linux 添加永久静态路由的方法

    Linux 添加永久静态路由的方法

    本篇文章主要介绍了Linux 添加永久静态路由的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-02-02
  • Node.js环境在linux上的部署教程

    Node.js环境在linux上的部署教程

    这篇文章主要介绍了Node.js环境在linux上的部署教程,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-02-02
  • 如何利用sed命令高效删除文件的特定行

    如何利用sed命令高效删除文件的特定行

    这篇文章主要给大家介绍了关于如何利用sed命令高效删除文件的特定行的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-08-08
  • Ubuntu中实现定时唤醒与自动休眠功能

    Ubuntu中实现定时唤醒与自动休眠功能

    在自动化脚本执行的时间段内唤醒系统使其正常运行,其余时间则让其进入休眠状态,以此来降低能耗,为达成这一目标,我编写了一个简易的脚本,并通过 crontab 配置了自动化任务,接下来,我会详尽地讲解整个配置过程,需要的朋友可以参考下
    2024-09-09
  • linux userdel 命令的使用

    linux userdel 命令的使用

    这篇文章主要介绍了linux userdel 命令的使用,帮助大家更好的理解和使用Linux系统,感兴趣的朋友可以了解下
    2020-08-08
  • CentOS 7安装配置图文教程

    CentOS 7安装配置图文教程

    这篇文章主要为大家详细介绍了CentOS 7安装配置图文教程,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-10-10
  • Linux系统利用cp命令实现强制覆盖功能的方法

    Linux系统利用cp命令实现强制覆盖功能的方法

    cp命令是我日常学习中经常会遇到的一个命令,下面这篇文章主要给大家介绍了关于Linux系统利用cp命令实现强制覆盖功能的方法,并且给大家简单的介绍了cp命令的基础知识,需要的朋友可以参考借鉴,下面随着小编来一起学习学习吧。
    2017-11-11
  • Ubuntu服务器常用命令汇总

    Ubuntu服务器常用命令汇总

    ubunt常用服务器命令操作,闲来无事,分享ubuntu服务器版常用命令,绝对有用。希望大家好好享受,但是不要拿自己的服务器做测试,建议您在windows下建立虚拟机再操作
    2020-10-10
  • linux查看防火墙是否关闭的实例方法

    linux查看防火墙是否关闭的实例方法

    在本篇文章里小编给各位分享的是关于linux查看防火墙是否关闭的实例方法,需要的朋友们可以学习下。
    2020-03-03
  • 手把手教你在腾讯云上搭建hadoop3.x伪集群的方法

    手把手教你在腾讯云上搭建hadoop3.x伪集群的方法

    这篇文章主要介绍了手把手教你在腾讯云上搭建hadoop3.x伪集群的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-07-07

最新评论