hbase安装问题处理

启动hbase时错误信息如下:


hbase安装问题处理_第1张图片

 

发现是版本冲突的问题,但是我之前处理过冲突(已经做了hadoop-core-1.2.1.jar文件的覆盖),仔细看了下日志信息,原来上面还有错误信息,没有重视:



hbase安装问题处理_第2张图片
 
 这里就估计应该是hbase-site.xml文件中配置问题了:

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

 

黑色部分改为:

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

下面是我的hosts文件:

 

[root@hadoop conf]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.1.10 hadoop

 

重新启动,问题解决。

你可能感兴趣的:(hadoop,配置,hbase,hbase-site.xml)