0
votes

I run hbase in a distributed mode. Hbase starts region servers java processes on all nodes, but web ui doesn' show them

http://s1.ipicture.ru/uploads/20120517/16DXTnsU.png

here is hbase-site.xml

<configuration>
<property>
    <name>hbase.zookeeper.quorum</name>
    <value>10.3.6.44</value>
</property>
<property>
    <name>hbase.zookeeper.property.dataDir</name>
    <value>/home/hadoop/hdfs/zookeeper</value>
</property>
<property>
   <name>hbase.rootdir</name>
     <value>hdfs://10.3.6.44:9000/hbase</value>
</property>
<property>
    <name>hbase.cluster.distributed</name>
    <value>true</value>
</property>

btw hadoop cluster is running normally and sees all the datanodes


thanks very much for your help. problem was with dns and hosts file.

1
In region servers logs there is an error: Unable to connect to Master Server at localhost, 60000... Why they're trying to connecto to localhost?MrKnyaz

1 Answers

0
votes

Add this property to your hbase-site.xml file and see if it works for you

  name - hbase.zookeeper.property.clientPort
  value - 2181