i setup hbase on cygwin on windows 8. when run start-hbase.sh seems true: zookeeper, region server , master start when want see status in browser localhost:60010 unable connect , when want run command list got error: error zookeeper.recoverablezookeeper: zookeeper exists failed after 3 retries warn zookeeper.zkutil: hconnection0x0 unable set watcher on znode (/hbase/hbaseid)
hbase-env.sh:
export java_home=/jdk1.8.0_45/ export hbase_classpath=/hbase-1.0.1/lib/ export hbase_opts="-xx:+useconcmarksweepgc" export hbase_ident_string=$hostname hbase-site.xml:
<configuration> <property> <name>hbase.rootdir</name> <value>file:///c:/cygwin/tmp/hbase/data</value> </property> <property> <name>hbase.tmp.dir</name> <value>file:///c:/cygwin/tmp/hbase/tmp</value> </property> <property> <name>hbase.zookeeper.quorum</name> <value>127.0.0.1</value> </property> </configuration> try both default (point windows hosts file) , this
127.0.0.1 localhost and test disabling ipv6 without luck. i’m new in hbase. how can fix problem?
Comments
Post a Comment