-6ren">
gpt4 book ai didi

shell - get "ERROR: Can' t 从 ZooKeeper 获取主地址; znode data == null"使用 Hbase shell 时

转载 作者:可可西里 更新时间:2023-11-01 14:10:57 26 4
gpt4 key购买 nike

我安装了 Hadoop2.2.0 和 Hbase0.98.0,这是我所做的:

$ ./bin/start-hbase.sh 

$ ./bin/hbase shell

2.0.0-p353 :001 > list

然后我得到了这个:

ERROR: Can't get master address from ZooKeeper; znode data == null

为什么我会收到这个错误?另一个问题:我需要在运行 base 之前运行 ./sbin/start-dfs.sh./sbin/start-yarn.sh 吗?

另外,./sbin/start-dfs.sh./sbin/start-yarn.sh 有什么用?

这是我的一些 conf 文档:

hbase-sites.xml

<configuration>
<property>
<name>hbase.rootdir</name>
<value>hdfs://127.0.0.1:9000/hbase</value>
</property>
<property>
<name>hbase.cluster.distributed</name>
<value>true</value>
</property>

<property>
<name>hbase.tmp.dir</name>
<value>/Users/apple/Documents/tools/hbase-tmpdir/hbase-data</value>
</property>
<property>
<name>hbase.zookeeper.quorum</name>
<value>localhost</value>
</property>
<property>
<name>hbase.zookeeper.property.dataDir</name>
<value>/Users/apple/Documents/tools/hbase-zookeeper/zookeeper</value>
</property>
</configuration>

核心站点.xml

<configuration>

<property>
<name>fs.defaultFS</name>
<value>hdfs://localhost:9000</value>
<description>The name of the default file system.</description>
</property>

<property>
<name>hadoop.tmp.dir</name>
<value>/Users/micmiu/tmp/hadoop</value>
<description>A base for other temporary directories.</description>
</property>

<property>
<name>io.native.lib.available</name>
<value>false</value>
</property>

</configuration>

yarn-sites.xml

<configuration>

<property>
<name>yarn.nodemanager.aux-services</name>
<value>mapreduce_shuffle</value>
</property>

<property>
<name>yarn.nodemanager.aux-services.mapreduce.shuffle.class</name>
<value>org.apache.hadoop.mapred.ShuffleHandler</value>
</property>

</configuration>

最佳答案

如果您只想运行 HBase 而无需进入独立 HBase 的 Zookeeper 管理,则从 hbase-site.xml 中删除所有 property block ,除了名为hbase.根目录

现在运行 /bin/start-hbase.sh。 HBase 带有自己的 Zookeeper,它会在您运行 /bin/start-hbase.sh 时启动,如果您是第一次尝试解决问题,这就足够了。稍后你可以为 Zookeeper 进行分布式模式配置。

你只需要运行/sbin/start-dfs.sh来运行HBase,因为hbase.rootdir的值设置为hdfs://127.0.0.1:9000/hbase 在您的 hbase-site.xml 中。如果您使用 file:///some_location_on_local_filesystem 将其更改为本地文件系统上的某个位置,那么您甚至不需要运行 /sbin/start-dfs.sh .

hdfs://127.0.0.1:9000/hbase 表示它是 HDFS 上的一个位置,/sbin/start-dfs.sh 启动提供底层的 namenode 和 datanode访问 HDFS 文件系统的 API。了解 Yarn,请查看 http://hadoop.apache.org/docs/r2.3.0/hadoop-yarn/hadoop-yarn-site/YARN.html .

关于shell - get "ERROR: Can' t 从 ZooKeeper 获取主地址; znode data == null"使用 Hbase shell 时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22663484/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com