前言
在使用dubbo等需要用到zookeeper,之前window下本地部署,启动一直有问题,后面折腾了下才部署成功,此次记录下来,以备后用。
下载
百度或者google下zookeeper官网,里面就有下载的选项,还有其他的说明。简单下载下来就好了。
What is ZooKeeper?
ZooKeeper is a centralized service for maintaining configuration information, naming, providing distributed synchronization, and providing group services. All of these kinds of services are used in some form or another by distributed applications. Each time they are implemented there is a lot of work that goes into fixing the bugs and race conditions that are inevitable. Because of the difficulty of implementing these kinds of services, applications initially usually skimp on them ,which make them brittle in the presence of change and difficult to manage. Even when done correctly, different implementations of these services lead to management complexity when the applications are deployed.
Learn more about ZooKeeper on the ZooKeeper Wiki.
配置
将zookeeper下载之后,解压到指定目录即可,无需安装。例如:解压到D:\Program Service Files\zookeeper-3.5.0-alpha。(下载的是3.5.0版本)
解压好了之后,进入conf文件夹,会发现有2个文件,log4j.properties和zoo_sample.cfg这2个文件。对于zoo_sample.cfg文件,需要先将文件名字修改成zoo.cfg文件才行,接下来修改里面配置,如下所示,给出了注释和简单的配置信息。
# ZK中的一个时间单元。ZK中所有时间都是以这个时间单元为基础,进行整数倍配置的。例如,session的最小超时时间是2*tickTime。
tickTime=2000
# Follower在启动过程中,会从Leader同步所有最新数据,然后确定自己能够对外服务的起始状态。Leader允许F在 initLimit 时间内完成这个工作。
initLimit=10
# 在运行过程中,Leader负责与ZK集群中所有机器进行通信,例如通过一些心跳检测机制,来检测机器的存活状态。
syncLimit=5
# 存储快照文件snapshot的目录。默认情况下,事务日志也会存储在这里。建议同时配置参数dataLogDir, 事务日志的写性能直接影响zk性能。
dataDir=D:/Program Service Files/zookeeper-3.5.0-alpha/data
# 事务日志输出目录。尽量给事务日志的输出配置单独的磁盘或是挂载点,这将极大的提升ZK性能。
dataLogDir=D:/Program Service Files/zookeeper-3.5.0-alpha/dataLog
# 客户端连接server的端口,即对外服务端口,一般设置为2181吧。
clientPort=2181
# 单个客户端与单台服务器之间的连接数的限制,是ip级别的,默认是60,如果设置为0,那么表明不作任何限制。
#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和dataLogDir文件夹,注意window下的/和\的处理方式。
启动错误
配置完成之后,就可以进入bin目录下,启动zkService.cmd了,当页面滚动时,证明启动成功了。
但是,我们会经常遇到双击启动时,一闪而过的场景,此时会什么错误信息都看不到,最好的方式就是采取cmd启动,这样能看到报错信息。
如下,在此文件夹打开cmd执行如下命令,就会看到报错信息了。
D:\Program Service Files\zookeeper-3.5.0-alpha\bin>zkServer.cmd
不会像之前出现一闪而过的场景了。
问题1
当启动zkService.cmd时,提示如下错误。找不到JAVA_HOME,提示没有正确设置,检查了下是有设置的。
D:\Program Service Files\zookeeper-3.5.0-alpha\bin>zkServer.cmd
系统找不到指定的路径。
Error: JAVA_HOME is incorrectly set.
D:\Program Service Files\zookeeper-3.5.0-alpha\bin>call "-Dzookeeper.log.dir=D:
\Program Service Files\zookeeper-3.5.0-alpha\bin\.." "-Dzookeeper.root.logger=IN
FO,CONSOLE" -cp "D:\Program Service Files\zookeeper-3.5.0-alpha\bin\..\build\cla
sses;D:\Program Service Files\zookeeper-3.5.0-alpha\bin\..\build\lib\*;D:\Progra
m Service Files\zookeeper-3.5.0-alpha\bin\..\*;D:\Program Service Files\zookeepe
r-3.5.0-alpha\bin\..\lib\*;D:\Program Service Files\zookeeper-3.5.0-alpha\bin\..
\conf" org.apache.zookeeper.server.quorum.QuorumPeerMain "D:\Program Service Fil
es\zookeeper-3.5.0-alpha\bin\..\conf\zoo.cfg"
'"-Dzookeeper.log.dir=D:\Program Service Files\zookeeper-3.5.0-alpha\bin\.."' 不
是内部或外部命令,也不是可运行的程序
或批处理文件。
D:\Program Service Files\zookeeper-3.5.0-alpha\bin>endlocal
通过查找google发现,是因为我们的java安装在了如下目录:
C:\Program Files\Java
这个路径中,program files含有空格,所以导致找不到java路径。此时,可在bin同级目录下,找到
zkEnv.cmd这个命令。用文本方式打开,可以看到如下内容:
set ZOOCFG=%ZOOCFGDIR%\zoo.cfg
@REM setup java environment variables
if not defined JAVA_HOME (
echo Error: JAVA_HOME is not set.
goto :eof
)
if not exist %JAVA_HOME%\bin\java.exe (
echo Error: JAVA_HOME is incorrectly set.
goto :eof
)
set JAVA=%JAVA_HOME%\bin\java
报错信息刚好是找不到java.exe,此时进行修改即可。对路径加入”“处理,如下所示:
@REM setup java environment variables
if not defined JAVA_HOME (
echo Error: JAVA_HOME is not set.
goto :eof
)
if not exist "%JAVA_HOME%\bin\java.exe" (
echo Error: JAVA_HOME is incorrectly set.
goto :eof
)
set JAVA=%JAVA_HOME%\bin\java
如上所示,这样就能找到java路径了。正确启动了。
类似的还能发现会出现【JAVA_HOME is not set】、【JAVA_HOME is incorrectly set】处理方式都一样了。
注:google说的是因为program files含有空格导致的,按照目前实验来看,估计还是因为window下\和/的问题导致的,引号之后,就能全部当作字符串路径处理了,需要做个实验看看。
问题2
当修改完成之后,再次cmd下启动,会发现还会报错,提示 ‘C:\Program’ 不是内部或外部命令,也不是可运行的程序或批处理文件 报错信息如下:
D:\Program Service Files\zookeeper-3.5.0-alpha\bin>zkServer.cmd
D:\Program Service Files\zookeeper-3.5.0-alpha\bin>call C:\Program Files\Java\jd
k1.7.0_79\bin\java "-Dzookeeper.log.dir=D:\Program Service Files\zookeeper-3.5.0
-alpha\bin\.." "-Dzookeeper.root.logger=INFO,CONSOLE" -cp "D:\Program Service Fi
les\zookeeper-3.5.0-alpha\bin\..\build\classes;D:\Program Service Files\zookeepe
r-3.5.0-alpha\bin\..\build\lib\*;D:\Program Service Files\zookeeper-3.5.0-alpha\
bin\..\*;D:\Program Service Files\zookeeper-3.5.0-alpha\bin\..\lib\*;D:\Program
Service Files\zookeeper-3.5.0-alpha\bin\..\conf" org.apache.zookeeper.server.quo
rum.QuorumPeerMain "D:\Program Service Files\zookeeper-3.5.0-alpha\bin\..\conf\z
oo.cfg"
'C:\Program' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
D:\Program Service Files\zookeeper-3.5.0-alpha\bin>endlocal
根据前面来看,估计还是window下的设置问题,和前面一样,此时继续修改zkEnv.cmd文件,修改如下:
@REM setup java environment variables
if not defined JAVA_HOME (
echo Error: JAVA_HOME is not set.
goto :eof
)
if not exist "%JAVA_HOME%\bin\java.exe" (
echo Error: JAVA_HOME is incorrectly set.
goto :eof
)
set JAVA="%JAVA_HOME%\bin\java"
将最后的set JAVA也用引号处理了,这样修改之后,再次启动就好了。
来源:CSDN
作者:今见功名胜古人
链接:https://blog.csdn.net/u011656266/article/details/53239973