Hello Ananda,
Add these two lines in your client and sww if it works for you :
config.set("hbase.zookeeper.property.clientPort","2181");
config.set("hbase.master", "localhost:60000");
Regards,
Mohammad Tariq
On Tue, Jul 3, 2012 at 3:49 PM, AnandaVelMurugan Chandra Mohan
<[email protected]> wrote:
> Hi,
>
> For development purpose, I have set up HBase in pseudodistributed mode.
>
> I have following line in hbase-env.sh file
>
> export HBASE_MANAGES_ZK=true
>
> HBase shell works fine. But client API is not working.
>
> My client code is as follows
>
> Configuration config = HBaseConfiguration.create();
> config.set("hbase.zookeeper.quorum", "10.78.32.131");
> config.setBoolean("hbase.cluster.distributed", false);
> HBaseAdmin admin = new HBaseAdmin(config);
> admin.isMasterRunning();
>
> System.out.println(admin.getClusterStatus().getHBaseVersion());
>
> I am getting java.net.ConnectException: Connection refused: no further
> information.
>
> Any idea, how it can be fixed. Please let me know. Thanks!!
> --
> Regards,
> Anand