You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Puri, Aseem" <As...@Honeywell.com> on 2009/03/17 04:48:26 UTC

Problem with starting HBase Master

 

Hi

 

            I am using Hadoop-0.18.0 and hbase-0.18.0. My Hadoop -site
configuration in Pseudo-Distributed Mode is:

 

 

<configuration> 

 

  <property>

    <name>fs.default.name</name>

    <value>hdfs://127.0.0.1:9000</value>

   </property>

                     

      <property>

          <name>mapred.job.tracker</name>

          <value>hdfs://127.0.0.1:9001</value>

      </property>

  

   <property>

    <name>dfs.name.dir</name>

    <value>/home/HadoopAdmin/hdfs/name</value>

   </property>

  

   <property>

    <name>dfs.data.dir</name>

    <value>/home/HadoopAdmin/hdfs/data</value>

   </property>

  

      <property>

          <name>dfs.replication</name>

    <value>3</value>

      </property>

 

</configuration>

 

 

Hadoop server is working fine but when I set my Hbase-site configuration
in Pseudo-Distributed Operation as:

 
<configuration>
  <property>
    <name>hbase.rootdir</name>
    <value>hdfs:// 127.0.0.1:9000/hbase</value>
    <description>The directory shared by region servers.
    </description>
  </property>
 </configuration>

 

HBase master don't works. But if I leave the configuration empty then
mater starts but it use local file system.

 

Please tell how should I configure my HBase so its master starts working
and HBase also works on HDFS.

 

-Aseem Puri