Hello All, I had installed Hadoop 2.6.0 with Hbase 1.0. Have configured all the settings mentioned in the Apache Website for both hadoop and Hbase. Hadoop runs successfully, but when I Start HBase, I dont see both HMaster and HRegionServer in JPS. Please find below my config files:
<configuration>
<property>
<name>hbase.rootdir</name>
<value>hdfs://hadoopmaster:9000/hbase</value>
</property>
<property>
<name>hbase.tmp.dir</name>
<value>/tmp</value>
</property>
<property>
<name>hbase.cluster.distributed</name>
<value>true</value>
</property>
<property>
<name>hbase.zookeeper.quorum</name>
<value>localhost</value>
</property>
<property>
<name>dfs.replication</name>
<value>1</value>
</property>
<property>
<name>hbase.zookeeper.property.clientPort</name>
<value>2181</value>
</property>
<property>
<name>hbase.zookeeper.property.dataDir</name>
<value>/home/yarn/hbase/zookeeper</value>
</property>
<property>
<name>zookeeper.znode.parent</name>
<value>/hbase-unsecure</value>
</property>
<property>
<name>hbase.master</name>
<value>hadoopmaster:60000</value>
</property>
</configuration>
*********************************************
/etc/hosts
127.0.0.1 localhost hadoopmaster
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
Have been workin on this issue for past 2 days. Please let me know what is wrong?
Regards,