place hbase-site.xml with two parameters in you classpath. hbase.zookeeper.quorum=your host hbase.zookeeper.property.clientPort=2181 (this parameter is optional)
another way, create Configuration and set this parameters from any sources you like (i use for example jndi in some of my apps). c = HBaseConfiguration.create(); c.set(propname, propvalue); 2010/12/23 King JKing <[email protected]> > Dear all, > > I set up my HBase server in standalone mode. > > Can HBase Client (from another machine) connect to this HBase server? > How can I do that? > > A lot of people have the same question. But I did not find correct answer. > > Thank a lot for support. >
