If this is all of your hbase-site.xml, you're not using Hadoop at all. Please review the Pseudo-distributed documentation for HBase.
J-D 2009/8/3 Onur AKTAS <[email protected]>: > > I have changed hbase-site.xml as below, and it now works (in Local mode). Its > something about Hadoop maybe? > > <configuration> > <property> > <name>hbase.master</name> > <value>localhost:60000</value> > <description>The directory shared by region servers. > </description> > </property> > <property> > <name>hbase.regionserver</name> > <value>localhost:60020</value> > </property> > </configuration> > > >> Date: Sun, 2 Aug 2009 19:25:16 -0700 >> Subject: Re: Connection failure to HBase >> From: [email protected] >> To: [email protected] >> >> You can set hbase.master property on the configuration object: >> >> config.set("hbase.master", "localhost:9000"); >> >> Regards, >> Vaibhav >> >> 2009/8/2 Onur AKTAS <[email protected]> >> >> > >> > Hi, >> > >> > I have just installed Hadoop 19.3 (pseudo distributed mode) and Hbase 19.2 >> > by following the instructions. >> > Both of them starts fine. >> > >> > Hadoop Log: >> > $ bin/start-all.sh >> > starting namenode, logging to >> > /hda3/ps/hadoop-0.19.2/bin/../logs/hadoop-oracle-namenode-localhost.localdomain.out >> > localhost: starting datanode, logging to >> > /hda3/ps/hadoop-0.19.2/bin/../logs/hadoop-oracle-datanode-localhost.localdomain.out >> > .... >> > >> > HBase Log: >> > $ bin/start-hbase.sh >> > starting master, logging to >> > /hda3/ps/hbase-0.19.3/bin/../logs/hbase-oracle-master-localhost.localdomain.out >> > localhost: >> > starting regionserver, logging to >> > >> > /hda3/ps/hbase-0.19.3/bin/../logs/hbase-oracle-regionserver-localhost.localdomain.out >> > >> > When I try to connect HBase from a client, it gives an error as: >> > >> > Aug 3, 2009 3:35:04 AM org.apache.hadoop.hbase.ipc.HBaseClient$Connection >> > handleConnectionFailure >> > INFO: Retrying connect to server: localhost/127.0.0.1:60000. Already tried >> > 0 time >> > (s). >> > Aug 3, 2009 3:35:05 AM org.apache.hadoop.hbase.ipc.HBaseClient$Connection >> > handleConnectionFailure >> > INFO: Retrying connect to server: localhost/127.0.0.1:60000. Already tried >> > 1 time(s). >> > >> > I >> > have configured sites.xml etc as "localhost:9000", How can I change >> > that 60000 port in client? I use like below in my Java class. >> > HBaseConfiguration config = new HBaseConfiguration(); >> > >> > Thanks. >> > >> > _________________________________________________________________ >> > Teker teker mi, yoksa hepsi birden mi? Arkadaşlarınızla ilgili güncel >> > bilgileri tek bir yerden edinin. >> > >> > http://www.microsoft.com/turkiye/windows/windowslive/products/social-network-connector.aspx > > _________________________________________________________________ > Windows Live ile fotoğraflarınızı organize edebilir, düzenleyebilir ve > paylaşabilirsiniz. > http://www.microsoft.com/turkiye/windows/windowslive/products/photo-gallery-edit.aspx
