服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

云服务器|WEB服务器|FTP服务器|邮件服务器|虚拟主机|服务器安全|DNS服务器|服务器知识|Nginx|IIS|Tomcat|

服务器之家 - 服务器技术 - 服务器知识 - apache-zookeeper-3.7.1 安装部署教程

apache-zookeeper-3.7.1 安装部署教程

2023-02-06 11:48大飞_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

配置参考一:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# 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

配置参考二:

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

apache-zookeeper-3.7.1 安装部署教程

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

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

apache-zookeeper-3.7.1 安装部署教程

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

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

原文链接:https://www.cnblogs.com/dafei4/p/17088496.html

延伸 · 阅读

精彩推荐