16 Aug 2012, 19:39
Generic-user-small

Nathan Messer (2 posts)

Just in case anyone has the same problems as me, the suggested config in the book actually meant I couldn’t start my hbase. In the end I only needed a subset of the suggested properties:


hbase.rootdir
file:///~/sevendbs/hbase/data-store

hbase.master.info.bindAddress
127.0.0.1

hbase.regionserver.info.bindAddress
127.0.0.1
16 Aug 2012, 19:39
Generic-user-small

Nathan Messer (2 posts)

 
<configuration>

<property>
<name>hbase.rootdir</name>
<value>file:///~/sevendbs/hbase/data-store</value>
</property>

<property>
<name>hbase.master.info.bindAddress</name>
<value>127.0.0.1</value>
</property>

<property>
<name>hbase.regionserver.info.bindAddress</name>
<value>127.0.0.1</value>
</property>

</configuration>
  You must be logged in to comment