zookeeper 源码地址:https://github.com/apache/zookeeper.git
clone 到本地后
通过 zkServer.cmd 的
call %JAVA% "-Dzookeeper.log.dir=%ZOO_LOG_DIR%" "-Dzookeeper.root.logger=%ZOO_LOG4J_PROP%" "-Dzookeeper.log.file=%ZOO_LOG_FILE%" "-XX:+HeapDumpOnOutOfMemoryError" "-XX:OnOutOfMemoryError=cmd /c taskkill /pid %%%%p /t /f" -cp "%CLAsspATH%" %ZOOMAIN% "%ZOOCFG%" %*
找到 入口:QuorumPeerMain
(1)zoo_sample.cfg 改名为 zoo.cfg
(2)修改 dataDir 为 dataDir=/Users/kevin/Documents/workspace/ideaworkspace/zookeeper-release-3.7.0/data
2. 引入以下依赖 (如果 zookeeper-server 的 pom.xml 中没有的话),但要将 metrics-core 的 <scope>provided</scope> 注释掉
<dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.xerial.snappy</groupId> <artifactId>snappy-java</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-client</artifactId> <scope>provided</scope> </dependency>
3. 编译 zookeeper-jute 模块 并标记 target 中 generated-sources 中的 java 为 Generated Sources Boot
防止出现 ACL、Id 缺失的错误
4. 编译 zookeeper-server 并标记 target 中 generated-sources 中的 java 为 Generated Sources Boot
5. debug 方式运行 QuorumPeerMain 中的 main 方法,在执行 ZooKeeperServerMain 类中 的 runFromConfig 方法的 ServerMetrics.metricsProviderInitialized(metricsProvider); 一行时,报 Exception in thread "main" java.lang.NoClassDefFoundError: com/codahale/metrics/Reservoir
原因:(1)2 中 metrics-core 的 <scope>provided</scope> 未注释掉
(2)缺少 metrics-graphite 依赖
解决方法:
参考 stackoverflow 上
Exception in thread "main" java.lang.NoClassDefFoundError: com/codahale/metrics/Reservoir
这个问题的回答
查看 zookeeper-server 的 pom.xml 中 metrics-core 的版本:
<dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> <!-- <scope>provided</scope>--> </dependency>
版本为 :4.1.12.1
因此 引入 4.1.12.1 版本的 metrics-graphite 依赖:
<dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-graphite</artifactId> <version>4.1.12.1</version> </dependency>
再次 compile zookeeper-server 模块
6. 编辑启动配置,配置启动参数即 配置文件位置
填入 zoo.cfg 位置:
即可运行成功
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。