Return-Path: X-Original-To: apmail-hbase-dev-archive@www.apache.org Delivered-To: apmail-hbase-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 05CA910828 for ; Fri, 31 Jan 2014 14:47:58 +0000 (UTC) Received: (qmail 94732 invoked by uid 500); 31 Jan 2014 14:47:55 -0000 Delivered-To: apmail-hbase-dev-archive@hbase.apache.org Received: (qmail 94431 invoked by uid 500); 31 Jan 2014 14:47:55 -0000 Mailing-List: contact dev-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list dev@hbase.apache.org Received: (qmail 94421 invoked by uid 99); 31 Jan 2014 14:47:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 31 Jan 2014 14:47:54 +0000 X-ASF-Spam-Status: No, hits=2.5 required=5.0 tests=FREEMAIL_REPLY,HTML_MESSAGE,NORMAL_HTTP_TO_IP,RCVD_IN_DNSWL_LOW,SPF_PASS,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of jeevitesh.ms@gmail.com designates 209.85.219.52 as permitted sender) Received: from [209.85.219.52] (HELO mail-oa0-f52.google.com) (209.85.219.52) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 31 Jan 2014 14:47:44 +0000 Received: by mail-oa0-f52.google.com with SMTP id i4so5182402oah.25 for ; Fri, 31 Jan 2014 06:47:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=rjoAf8M78wXWdwkI+NlHnCZobr+20lOKKWN2QL49/Ik=; b=wEXunhpm0hDJjJiopAh7kgip6jH5NWagMtNPDvB39LrOU75opdhNERqnkuUBbbq63s QfxtFwz4fxQpp0GSvQLQzBBjXQQxjZhIoDGYAdEJ0nv66hODhezvzoan+eUvukxAVTrf 7uJpjp8lkUggzpDvEmw3AezN+boZowHnc4tPRZcTfqXQG+Zf+mk2za/+9iqXW+z2QJ4p g3iAUpsflMrWVUQDOkkOKPkkl9uNoXwOz+w8tp8w4UV05CngiHX+Jw1aFrTMHQASBm// 9Nj0qNybKMt+TZs6x14/GFlhtcI8+lu7GXtqJO1RNl+zTCewN7e3Dw3mu1nNYO0XZLkH ofJg== MIME-Version: 1.0 X-Received: by 10.60.246.104 with SMTP id xv8mr17053312oec.18.1391179643721; Fri, 31 Jan 2014 06:47:23 -0800 (PST) Received: by 10.76.81.35 with HTTP; Fri, 31 Jan 2014 06:47:23 -0800 (PST) In-Reply-To: References: <58498390-3173-4F3E-8960-A6965D62718D@gmail.com> Date: Fri, 31 Jan 2014 20:17:23 +0530 Message-ID: Subject: Re: help needed towards connecting Hbase From: jeevi tesh To: dev@hbase.apache.org Content-Type: multipart/alternative; boundary=001a113698747b9ce904f145406b X-Virus-Checked: Checked by ClamAV on apache.org --001a113698747b9ce904f145406b Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable One interesting thing, is even if i shutdown the linux system or stop hbase same error I get. so it proves it is not even able to establishes connection to hadoop server so it is the problem in my client code On Fri, Jan 31, 2014 at 8:12 PM, jeevi tesh wrote: > Thanks for taking effort to help me > In "http://192.168.1.42:60010/master-status" > I found > " Zookeeper Quorum localhost:2181 Addresses of all registered ZK servers. > For more, see zk dump." > accordingly I updated my code with proper port number > still error persists... > please check my code and error also > It will be of great help if you can help me. > I'm trying to run the below code from windows machine and hadoop and hbas= e > are installed in oracle linux single node cluster > Now i removed Zookeeper > import java.io.IOException; > > import org.apache.hadoop.conf.Configuration; > import org.apache.hadoop.hbase.HBaseConfiguration; > import org.apache.hadoop.hbase.client.HTable; > import org.apache.hadoop.hbase.client.Put; > import org.apache.hadoop.hbase.util.Bytes; > > public class testDB { > > /** > * @param args > */ > public static void main(String[] args) { > try { > System.out.println("1 Before HBASE COnfiguration"); > Configuration config =3D HBaseConfiguration.create(); > //config.clear(); > System.out.println("2 Before HBASE COnfiguration"); > config.set("hbase.master", "192.168.1.42:60010"); > config.set("hbase.zookeeper.quorum.", "192.168.1.42:2181"); > System.out.println("HBase is running!"); > HTable table; > table =3D new HTable(config, "mytable"); > System.out.println("Table mytable obtained "); > > Put put =3D new Put(Bytes.toBytes("row1")); > > put.add(Bytes.toBytes("colfam1"),Bytes.toBytes("qual1"),Bytes.toBytes("va= l1")); > > put.add(Bytes.toBytes("colfam1"),Bytes.toBytes("qual2"),Bytes.toBytes("va= l2")); > table.put(put); > } catch (IOException e) { > e.printStackTrace(); > } > > } > > } > 1 Before HBASE COnfiguration > 2 Before HBASE COnfiguration > HBase is running! > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client > environment:zookeeper.version=3D3.3.2-1031432, built on 11/05/2010 05:32 = GMT > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client environment:host.name > =3DDELL-75.unilog > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client > environment:java.version=3D1.6.0_16 > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client > environment:java.vendor=3DSun Microsystems Inc. > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client > environment:java.home=3DC:\Program Files\Java\jdk1.6.0_16\jre > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client > environment:java.class.path=3DE:\jeevi\XRFWorkSpace200\testdbcon\bin;E:\j= eevi\XRF100\WebContent\WEB-INF\lib\apache-logging-log4j.jar;E:\jeevi\XRF100= \WebContent\WEB-INF\lib\asm-3.1.jar;E:\jeevi\XRF100\WebContent\WEB-INF\lib\= commons-logging-1.1.3.jar;E:\jeevi\XRF100\WebContent\WEB-INF\lib\hadoop-cor= e-0.19.0.jar;E:\jeevi\XRF100\WebContent\WEB-INF\lib\hbase-0.90.2.jar;E:\jee= vi\XRF100\WebContent\WEB-INF\lib\zookeeper-3.3.2.jar > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client > environment:java.library.path=3DC:\Program > Files\Java\jdk1.6.0_16\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;= C:\Windows;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windo= ws\System32\WindowsPowerShell\v1.0\;C:\Program > Files\Common Files\Acronis\SnapAPI\;C:\Program > Files\Java\jdk1.6.0_16\bin;C:\apache-maven-3.1.1\bin > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client > environment:java.io.tmpdir=3DC:\Users\jems\AppData\Local\Temp\ > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client > environment:java.compiler=3D > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client environment:os.name=3D= Windows > 7 > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client environment:os.arch=3D= x86 > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client > environment:os.version=3D6.1 > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client environment:user.name > =3Djems > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client > environment:user.home=3DC:\Users\jems > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Client > environment:user.dir=3DE:\jeevi\XRFWorkSpace200\testdbcon > 14/01/31 20:04:47 INFO zookeeper.ZooKeeper: Initiating client connection, > connectString=3Dlocalhost:2181 sessionTimeout=3D180000 watcher=3Dhconnect= ion > 14/01/31 20:04:47 INFO zookeeper.ClientCnxn: Opening socket connection to > server localhost/127.0.0.1:2181 > 14/01/31 20:04:48 WARN zookeeper.ClientCnxn: Session 0x0 for server null, > unexpected error, closing socket connection and attempting reconnect > java.net.ConnectException: Connection refused: no further information > at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) > at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:574) > at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1119) > 14/01/31 20:04:48 INFO zookeeper.ClientCnxn: Opening socket connection to > server localhost/0:0:0:0:0:0:0:1:2181 > 14/01/31 20:04:48 WARN zookeeper.ClientCnxn: Session 0x0 for server null, > unexpected error, closing socket connection and attempting reconnect > java.net.SocketException: Address family not supported by protocol family= : > connect > at sun.nio.ch.Net.connect(Native Method) > at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:507) > at > org.apache.zookeeper.ClientCnxn$SendThread.startConnect(ClientCnxn.java:1= 050) > at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1077) > 14/01/31 20:04:50 INFO zookeeper.ClientCnxn: Opening socket connection to > server localhost/127.0.0.1:2181 > 14/01/31 20:04:51 WARN zookeeper.ClientCnxn: Session 0x0 for server null, > unexpected error, closing socket connection and attempting reconnect > java.net.ConnectException: Connection refused: no further information > at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) > at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:574) > at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1119) > 14/01/31 20:04:51 INFO zookeeper.ClientCnxn: Opening socket connection to > server localhost/0:0:0:0:0:0:0:1:2181 > 14/01/31 20:04:51 WARN zookeeper.ClientCnxn: Session 0x0 for server null, > unexpected error, closing socket connection and attempting reconnect > java.net.SocketException: Address family not supported by protocol family= : > connect > at sun.nio.ch.Net.connect(Native Method) > at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:507) > at > org.apache.zookeeper.ClientCnxn$SendThread.startConnect(ClientCnxn.java:1= 050) > at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1077) > 14/01/31 20:04:53 INFO zookeeper.ClientCnxn: Opening socket connection to > server localhost/127.0.0.1:2181 > 14/01/31 20:04:54 WARN zookeeper.ClientCnxn: Session 0x0 for server null, > unexpected error, closing socket connection and attempting reconnect > java.net.ConnectException: Connection refused: no further information > at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) > at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:574) > at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1119) > 14/01/31 20:04:54 INFO zookeeper.ClientCnxn: Opening socket connection to > server localhost/0:0:0:0:0:0:0:1:2181 > 14/01/31 20:04:54 WARN zookeeper.ClientCnxn: Session 0x0 for server null, > unexpected error, closing socket connection and attempting reconnect > java.net.SocketException: Address family not supported by protocol family= : > connect > at sun.nio.ch.Net.connect(Native Method) > at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:507) > at > org.apache.zookeeper.ClientCnxn$SendThread.startConnect(ClientCnxn.java:1= 050) > at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1077) > 14/01/31 20:04:56 INFO zookeeper.ClientCnxn: Opening socket connection to > server localhost/127.0.0.1:2181 > 14/01/31 20:04:57 WARN zookeeper.ClientCnxn: Session 0x0 for server null, > unexpected error, closing socket connection and attempting reconnect > java.net.ConnectException: Connection refused: no further information > at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) > at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:574) > at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1119) > org.apache.hadoop.hbase.ZooKeeperConnectionException: > org.apache.hadoop.hbase.ZooKeeperConnectionException: > org.apache.zookeeper.KeeperException$ConnectionLossException: > KeeperErrorCode =3D ConnectionLoss for /hbase > at > org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementati= on.getZooKeeperWatcher(HConnectionManager.java:1000) > at > org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementati= on.setupZookeeperTrackers(HConnectionManager.java:303) > at > org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementati= on.(HConnectionManager.java:294) > at > org.apache.hadoop.hbase.client.HConnectionManager.getConnection(HConnecti= onManager.java:156) > at org.apache.hadoop.hbase.client.HTable.(HTable.java:167) > at org.apache.hadoop.hbase.client.HTable.(HTable.java:145) > at pack1.testDB.main(testDB.java:27) > Caused by: org.apache.hadoop.hbase.ZooKeeperConnectionException: > org.apache.zookeeper.KeeperException$ConnectionLossException: > KeeperErrorCode =3D ConnectionLoss for /hbase > at > org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher.(ZooKeeperWatche= r.java:147) > at > org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementati= on.getZooKeeperWatcher(HConnectionManager.java:998) > ... 6 more > Caused by: org.apache.zookeeper.KeeperException$ConnectionLossException: > KeeperErrorCode =3D ConnectionLoss for /hbase > at org.apache.zookeeper.KeeperException.create(KeeperException.java:90) > at org.apache.zookeeper.KeeperException.create(KeeperException.java:42) > at org.apache.zookeeper.ZooKeeper.create(ZooKeeper.java:637) > at > org.apache.hadoop.hbase.zookeeper.ZKUtil.createAndFailSilent(ZKUtil.java:= 902) > at > org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher.(ZooKeeperWatche= r.java:133) > ... 7 more > > > > > > On Fri, Jan 31, 2014 at 7:47 PM, Sukumar Maddineni < > smaddineni@salesforce.com> wrote: > >> If you didn't then hbase by default starts zookeeper internally. Please >> check the *Zookeeper Quorum* value in *attributes* section at webpage " >> http://192.168.1.42:60010/master-status" . Use that value in your code. >> >> PFA >> >> >> Thanks >> Sukumar >> >> >> On Fri, Jan 31, 2014 at 5:54 PM, jeevi tesh wrot= e: >> >>> I have not even installed zookeeper is it mandatory.. No installation >>> documents talk about installing the same.. >>> Any how i'll install and try.. >>> Thanks for your efforts to help me out... >>> >>> >>> On Fri, Jan 31, 2014 at 5:14 PM, ramkrishna vasudevan < >>> ramkrishna.s.vasudevan@gmail.com> wrote: >>> >>> > Is your zookeeper started? I have not tried this in windows till now= . >>> > >>> > >>> > On Fri, Jan 31, 2014 at 5:04 PM, jeevi tesh >>> > wrote: >>> > >>> > > as you said I have added in my client code >>> > > like >>> > > config.set("hbase.master", "192.168.1.42:60010"); >>> > > config.set("hbase.zookeeper.quorum.", "localhost"); >>> > > Please correct me if I'm wrong.. Still same error persists >>> > > Now even I changed my installation to hbase-0.96.1.1-hadoop2 >>> > > Thanks >>> > > >>> > > >>> > > >>> > > On Fri, Jan 31, 2014 at 4:53 PM, ramkrishna vasudevan < >>> > > ramkrishna.s.vasudevan@gmail.com> wrote: >>> > > >>> > > > The hbase-site.xml is available on your client also? And if not >>> you >>> > need >>> > > > to add this configuration in your client code explicitly. >>> > > > >>> > > > >>> > > > On Fri, Jan 31, 2014 at 4:21 PM, jeevi tesh < >>> jeevitesh.ms@gmail.com> >>> > > > wrote: >>> > > > >>> > > > > Not able to understand what you referring can please explain bi= t >>> > > more... >>> > > > > Are asking me to add windows client machine ip address to quoru= m >>> > > > > >>> > > > > >>> > > > > On Fri, Jan 31, 2014 at 3:50 PM, ramkrishna vasudevan < >>> > > > > ramkrishna.s.vasudevan@gmail.com> wrote: >>> > > > > >>> > > > > > Your client side also you should have this. Are you using th= e >>> same >>> > > > > > machine/location for client also? >>> > > > > > >>> > > > > > >>> > > > > > On Fri, Jan 31, 2014 at 3:38 PM, jeevi tesh < >>> > jeevitesh.ms@gmail.com> >>> > > > > > wrote: >>> > > > > > >>> > > > > > > Hi, >>> > > > > > > Thanks for taking initiative to help me.. >>> > > > > > > Note : my set up is single node cluster, so >>> > > > > > > I added a entry in hbase-site.xml >>> > > > > > > like >>> > > > > > > >>> > > > > > > hbase.zookeeper.quorum >>> > > > > > > localhost >>> > > > > > > >>> > > > > > > But still almost same error persists >>> > > > > > > and my /etc/hosts >>> > > > > > > looks like >>> > > > > > > 127.0.0.1 localhost.localdomain.com >>> > > localhost >>> > > > > > > 127.0.0.1 database.companyname.com >>> database >>> > > > > > > If you have noted any issue in using hbase-0.96.0-hadoop2 >>> please >>> > > let >>> > > > me >>> > > > > > > know it will be very useful >>> > > > > > > thanks >>> > > > > > > >>> > > > > > > >>> > > > > > > >>> > > > > > > On Fri, Jan 31, 2014 at 2:36 PM, Ted Yu >> > >>> > > wrote: >>> > > > > > > >>> > > > > > > > In the config, you should set zookeeper quorum >>> > > > > > > > >>> > > > > > > > BTW please use 0.96.1.1-hadoop2 release. >>> > > > > > > > >>> > > > > > > > Cheers >>> > > > > > > > >>> > > > > > > > On Jan 30, 2014, at 11:51 PM, jeevi tesh < >>> > jeevitesh.ms@gmail.com >>> > > > >>> > > > > > wrote: >>> > > > > > > > >>> > > > > > > > > Hi all, >>> > > > > > > > > >>> > > > > > > > > I'm writing simple java program to connect to HBase. >>> > > > > > > > > >>> > > > > > > > > Versions of software used >>> > > > > > > > > >>> > > > > > > > > Hbase 0.96.0-hadoop2 >>> > > > > > > > > >>> > > > > > > > > Hadoop:hadoop-2.2.0. >>> > > > > > > > > >>> > > > > > > > > I'm trying to connect from my windows 7 (32 bit)machine >>> to >>> > > oracle >>> > > > > > linux >>> > > > > > > > > machine (Details :VM, 64 bit).Note I have not installed >>> > > > ZooKeeper. >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > Any suggestion or comments will be of great help >>> > > > > > > > > >>> > > > > > > > > Thanks >>> > > > > > > > > >>> > > > > > > > > Here is the script... >>> > > > > > > > > >>> > > > > > > > > *package* pack1; >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > *import* java.io.IOException; >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > *import* org.apache.hadoop.conf.Configuration; >>> > > > > > > > > >>> > > > > > > > > *import* org.apache.hadoop.hbase.HBaseConfiguration; >>> > > > > > > > > >>> > > > > > > > > *import* org.apache.hadoop.hbase.client.HTable; >>> > > > > > > > > >>> > > > > > > > > *import* org.apache.hadoop.hbase.client.Put; >>> > > > > > > > > >>> > > > > > > > > *import* org.apache.hadoop.hbase.util.Bytes; >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > *public* *class* testDB { >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > /** >>> > > > > > > > > >>> > > > > > > > > * *@param* args >>> > > > > > > > > >>> > > > > > > > > */ >>> > > > > > > > > >>> > > > > > > > > *public* *static* *void* main(String[] args) { >>> > > > > > > > > >>> > > > > > > > > *try* { >>> > > > > > > > > >>> > > > > > > > > System.*out*.println("1 Before HBASE >>> > > COnfiguration"); >>> > > > > > > > > >>> > > > > > > > > Configuration config =3D >>> > > HBaseConfiguration.*create*(); >>> > > > > > > > > >>> > > > > > > > > config.clear(); >>> > > > > > > > > >>> > > > > > > > > System.*out*.println("2 Before HBASE >>> > > COnfiguration"); >>> > > > > > > > > >>> > > > > > > > > config.set("hbase.master", " >>> 192.168.1.42:60010"); >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > System.*out*.println("HBase is running!"); >>> > > > > > > > > >>> > > > > > > > > HTable table; >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > table =3D *new* HTable(config, >>> > "mytable"); >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > System.*out*.println("Table mytable obtained >>> "); >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > Put put =3D *new* Put(Bytes.*toBytes*("row1"= )); >>> > > > > > > > > >>> > > > > > > > > >>> > > > > put.add(Bytes.*toBytes*("colfam1"),Bytes.*toBytes*("qual1" >>> > > > > > > > > ),Bytes.*toBytes*("val1")); >>> > > > > > > > > >>> > > > > > > > > >>> > > > > put.add(Bytes.*toBytes*("colfam1"),Bytes.*toBytes*("qual2" >>> > > > > > > > > ),Bytes.*toBytes*("val2")); >>> > > > > > > > > >>> > > > > > > > > table.put(put); >>> > > > > > > > > >>> > > > > > > > > } *catch* (IOException e) { >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > e.printStackTrace(); >>> > > > > > > > > >>> > > > > > > > > } >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > } >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > >>> > > > > > > > > } >>> > > > > > > > > >>> > > > > > > > > Error message >>> > > > > > > > > >>> > > > > > > > > 1 Before HBASE COnfiguration >>> > > > > > > > > >>> > > > > > > > > 2 Before HBASE COnfiguration >>> > > > > > > > > >>> > > > > > > > > HBase is running! >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > > > > > > > > environment:zookeeper.version=3D3.3.2-1031432, built on >>> > > 11/05/2010 >>> > > > > > 05:32 >>> > > > > > > > GMT >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > environment: >>> > > > > > > host.name >>> > > > > > > > > =3DDELL-75.unilog >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > > > > > > > > environment:java.version=3D1.6.0_16 >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > > > > > > > > environment:java.vendor=3DSun Microsystems Inc. >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > > > > > > > > environment:java.home=3DC:\Program >>> Files\Java\jdk1.6.0_16\jre >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > > > > > > > > >>> > > > > > > > >>> > > > > > > >>> > > > > > >>> > > > > >>> > > > >>> > > >>> > >>> environment:java.class.path=3DE:\jeevi\XRFWorkSpace200\testdbcon\bin;E:= \jeevi\XRF100\WebContent\WEB-INF\lib\apache-logging-log4j.jar;E:\jeevi\XRF1= 00\WebContent\WEB-INF\lib\asm-3.1.jar;E:\jeevi\XRF100\WebContent\WEB-INF\li= b\commons-logging-1.1.3.jar;E:\jeevi\XRF100\WebContent\WEB-INF\lib\hadoop-c= ore-0.19.0.jar;E:\jeevi\XRF100\WebContent\WEB-INF\lib\hbase-0.90.2.jar;E:\j= eevi\XRF100\WebContent\WEB-INF\lib\zookeeper-3.3.2.jar >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > > > > > > > > environment:java.library.path=3DC:\Program >>> > > > > > > > > >>> > > > > > > > >>> > > > > > > >>> > > > > > >>> > > > > >>> > > > >>> > > >>> > >>> Files\Java\jdk1.6.0_16\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system3= 2;C:\Windows;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Win= dows\System32\WindowsPowerShell\v1.0\;C:\Program >>> > > > > > > > > Files\Common Files\Acronis\SnapAPI\;C:\Program >>> > > > > > > > > Files\Java\jdk1.6.0_16\bin;C:\apache-maven-3.1.1\bin >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > > > > > > > > >>> environment:java.io.tmpdir=3DC:\Users\jems\AppData\Local\Temp\ >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > > > > > > > > environment:java.compiler=3D >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > environment: >>> > > > > > os.name >>> > > > > > > > =3DWindows >>> > > > > > > > > 7 >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > > > > > > > environment:os.arch=3Dx86 >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > > > > > > > > environment:os.version=3D6.1 >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > environment: >>> > > > > > > user.name >>> > > > > > > > > =3Djems >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > > > > > > > > environment:user.home=3DC:\Users\jems >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Client >>> > > > > > > > > environment:user.dir=3DE:\jeevi\XRFWorkSpace200\testdbc= on >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ZooKeeper: Initiating >>> client >>> > > > > > > connection, >>> > > > > > > > > connectString=3Dlocalhost:2181 sessionTimeout=3D180000 >>> > > > > > watcher=3Dhconnection >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:55 INFO zookeeper.ClientCnxn: Opening >>> socket >>> > > > > > connection >>> > > > > > > to >>> > > > > > > > > server localhost/127.0.0.1:2181 >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:56 WARN zookeeper.ClientCnxn: Session 0x= 0 >>> for >>> > > > server >>> > > > > > > null, >>> > > > > > > > > unexpected error, closing socket connection and >>> attempting >>> > > > > reconnect >>> > > > > > > > > >>> > > > > > > > > *java.net.ConnectException*: Connection refused: no >>> further >>> > > > > > information >>> > > > > > > > > >>> > > > > > > > > at sun.nio.ch.SocketChannelImpl.checkConnect(*Nati= ve >>> > > > Method*) >>> > > > > > > > > >>> > > > > > > > > at sun.nio.ch.SocketChannelImpl.finishConnect( >>> > > > > > > > > *SocketChannelImpl.java:574*) >>> > > > > > > > > >>> > > > > > > > > at org.apache.zookeeper.ClientCnxn$SendThread.run( >>> > > > > > > > > *ClientCnxn.java:1119*) >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:56 INFO zookeeper.ClientCnxn: Opening >>> socket >>> > > > > > connection >>> > > > > > > to >>> > > > > > > > > server localhost/0:0:0:0:0:0:0:1:2181 >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:56 WARN zookeeper.ClientCnxn: Session 0x= 0 >>> for >>> > > > server >>> > > > > > > null, >>> > > > > > > > > unexpected error, closing socket connection and >>> attempting >>> > > > > reconnect >>> > > > > > > > > >>> > > > > > > > > *java.net.SocketException*: Address family not supporte= d >>> by >>> > > > > protocol >>> > > > > > > > > family: connect >>> > > > > > > > > >>> > > > > > > > > at sun.nio.ch.Net.connect(*Native Method*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > > > > > > >>> > > sun.nio.ch.SocketChannelImpl.connect(*SocketChannelImpl.java:507*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > org.apache.zookeeper.ClientCnxn$SendThread.startConnect( >>> > > > > > > > > *ClientCnxn.java:1050*) >>> > > > > > > > > >>> > > > > > > > > at org.apache.zookeeper.ClientCnxn$SendThread.run( >>> > > > > > > > > *ClientCnxn.java:1077*) >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:58 INFO zookeeper.ClientCnxn: Opening >>> socket >>> > > > > > connection >>> > > > > > > to >>> > > > > > > > > server localhost/127.0.0.1:2181 >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:59 WARN zookeeper.ClientCnxn: Session 0x= 0 >>> for >>> > > > server >>> > > > > > > null, >>> > > > > > > > > unexpected error, closing socket connection and >>> attempting >>> > > > > reconnect >>> > > > > > > > > >>> > > > > > > > > *java.net.ConnectException*: Connection refused: no >>> further >>> > > > > > information >>> > > > > > > > > >>> > > > > > > > > at sun.nio.ch.SocketChannelImpl.checkConnect(*Nati= ve >>> > > > Method*) >>> > > > > > > > > >>> > > > > > > > > at sun.nio.ch.SocketChannelImpl.finishConnect( >>> > > > > > > > > *SocketChannelImpl.java:574*) >>> > > > > > > > > >>> > > > > > > > > at org.apache.zookeeper.ClientCnxn$SendThread.run( >>> > > > > > > > > *ClientCnxn.java:1119*) >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:59 INFO zookeeper.ClientCnxn: Opening >>> socket >>> > > > > > connection >>> > > > > > > to >>> > > > > > > > > server localhost/0:0:0:0:0:0:0:1:2181 >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:14:59 WARN zookeeper.ClientCnxn: Session 0x= 0 >>> for >>> > > > server >>> > > > > > > null, >>> > > > > > > > > unexpected error, closing socket connection and >>> attempting >>> > > > > reconnect >>> > > > > > > > > >>> > > > > > > > > *java.net.SocketException*: Address family not supporte= d >>> by >>> > > > > protocol >>> > > > > > > > > family: connect >>> > > > > > > > > >>> > > > > > > > > at sun.nio.ch.Net.connect(*Native Method*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > > > > > > >>> > > sun.nio.ch.SocketChannelImpl.connect(*SocketChannelImpl.java:507*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > org.apache.zookeeper.ClientCnxn$SendThread.startConnect( >>> > > > > > > > > *ClientCnxn.java:1050*) >>> > > > > > > > > >>> > > > > > > > > at org.apache.zookeeper.ClientCnxn$SendThread.run( >>> > > > > > > > > *ClientCnxn.java:1077*) >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:15:00 INFO zookeeper.ClientCnxn: Opening >>> socket >>> > > > > > connection >>> > > > > > > to >>> > > > > > > > > server localhost/127.0.0.1:2181 >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:15:01 WARN zookeeper.ClientCnxn: Session 0x= 0 >>> for >>> > > > server >>> > > > > > > null, >>> > > > > > > > > unexpected error, closing socket connection and >>> attempting >>> > > > > reconnect >>> > > > > > > > > >>> > > > > > > > > *java.net.ConnectException*: Connection refused: no >>> further >>> > > > > > information >>> > > > > > > > > >>> > > > > > > > > at sun.nio.ch.SocketChannelImpl.checkConnect(*Nati= ve >>> > > > Method*) >>> > > > > > > > > >>> > > > > > > > > at sun.nio.ch.SocketChannelImpl.finishConnect( >>> > > > > > > > > *SocketChannelImpl.java:574*) >>> > > > > > > > > >>> > > > > > > > > at org.apache.zookeeper.ClientCnxn$SendThread.run( >>> > > > > > > > > *ClientCnxn.java:1119*) >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:15:02 INFO zookeeper.ClientCnxn: Opening >>> socket >>> > > > > > connection >>> > > > > > > to >>> > > > > > > > > server localhost/0:0:0:0:0:0:0:1:2181 >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:15:02 WARN zookeeper.ClientCnxn: Session 0x= 0 >>> for >>> > > > server >>> > > > > > > null, >>> > > > > > > > > unexpected error, closing socket connection and >>> attempting >>> > > > > reconnect >>> > > > > > > > > >>> > > > > > > > > *java.net.SocketException*: Address family not supporte= d >>> by >>> > > > > protocol >>> > > > > > > > > family: connect >>> > > > > > > > > >>> > > > > > > > > at sun.nio.ch.Net.connect(*Native Method*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > > > > > > >>> > > sun.nio.ch.SocketChannelImpl.connect(*SocketChannelImpl.java:507*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > org.apache.zookeeper.ClientCnxn$SendThread.startConnect( >>> > > > > > > > > *ClientCnxn.java:1050*) >>> > > > > > > > > >>> > > > > > > > > at org.apache.zookeeper.ClientCnxn$SendThread.run( >>> > > > > > > > > *ClientCnxn.java:1077*) >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:15:03 INFO zookeeper.ClientCnxn: Opening >>> socket >>> > > > > > connection >>> > > > > > > to >>> > > > > > > > > server localhost/127.0.0.1:2181 >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:15:04 WARN zookeeper.ClientCnxn: Session 0x= 0 >>> for >>> > > > server >>> > > > > > > null, >>> > > > > > > > > unexpected error, closing socket connection and >>> attempting >>> > > > > reconnect >>> > > > > > > > > >>> > > > > > > > > *java.net.ConnectException*: Connection refused: no >>> further >>> > > > > > information >>> > > > > > > > > >>> > > > > > > > > at sun.nio.ch.SocketChannelImpl.checkConnect(*Nati= ve >>> > > > Method*) >>> > > > > > > > > >>> > > > > > > > > at sun.nio.ch.SocketChannelImpl.finishConnect( >>> > > > > > > > > *SocketChannelImpl.java:574*) >>> > > > > > > > > >>> > > > > > > > > at org.apache.zookeeper.ClientCnxn$SendThread.run( >>> > > > > > > > > *ClientCnxn.java:1119*) >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:15:05 INFO zookeeper.ClientCnxn: Opening >>> socket >>> > > > > > connection >>> > > > > > > to >>> > > > > > > > > server localhost/0:0:0:0:0:0:0:1:2181 >>> > > > > > > > > >>> > > > > > > > > 14/01/31 13:15:05 WARN zookeeper.ClientCnxn: Session 0x= 0 >>> for >>> > > > server >>> > > > > > > null, >>> > > > > > > > > unexpected error, closing socket connection and >>> attempting >>> > > > > reconnect >>> > > > > > > > > >>> > > > > > > > > *java.net.SocketException*: Address family not supporte= d >>> by >>> > > > > protocol >>> > > > > > > > > family: connect >>> > > > > > > > > >>> > > > > > > > > at sun.nio.ch.Net.connect(*Native Method*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > > > > > > >>> > > sun.nio.ch.SocketChannelImpl.connect(*SocketChannelImpl.java:507*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > org.apache.zookeeper.ClientCnxn$SendThread.startConnect( >>> > > > > > > > > *ClientCnxn.java:1050*) >>> > > > > > > > > >>> > > > > > > > > at org.apache.zookeeper.ClientCnxn$SendThread.run( >>> > > > > > > > > *ClientCnxn.java:1077*) >>> > > > > > > > > >>> > > > > > > > > *org.apache.hadoop.hbase.ZooKeeperConnectionException*: >>> > > > > > > > > *org.apache.hadoop.hbase.ZooKeeperConnectionException*: >>> > > > > > > > > >>> > *org.apache.zookeeper.KeeperException$ConnectionLossException*: >>> > > > > > > > > KeeperErrorCode =3D ConnectionLoss for /hbase >>> > > > > > > > > >>> > > > > > > > > at >>> > > > > > > > > >>> > > > > > > > >>> > > > > > > >>> > > > > > >>> > > > > >>> > > > >>> > > >>> > >>> org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementa= tion.getZooKeeperWatcher( >>> > > > > > > > > *HConnectionManager.java:1000*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > > > > > > > >>> > > > > > > > >>> > > > > > > >>> > > > > > >>> > > > > >>> > > > >>> > > >>> > >>> org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementa= tion.setupZookeeperTrackers( >>> > > > > > > > > *HConnectionManager.java:303*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > > > > > > > >>> > > > > > > > >>> > > > > > > >>> > > > > > >>> > > > > >>> > > > >>> > > >>> > >>> org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementa= tion.( >>> > > > > > > > > *HConnectionManager.java:294*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > > > > > >>> org.apache.hadoop.hbase.client.HConnectionManager.getConnection( >>> > > > > > > > > *HConnectionManager.java:156*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > > > > org.apache.hadoop.hbase.client.HTable.(*HTable.java:167= *) >>> > > > > > > > > >>> > > > > > > > > at >>> > > > > > org.apache.hadoop.hbase.client.HTable.(*HTable.java:145= *) >>> > > > > > > > > >>> > > > > > > > > at pack1.testDB.main(*testDB.java:27*) >>> > > > > > > > > >>> > > > > > > > > Caused by: >>> > > > *org.apache.hadoop.hbase.ZooKeeperConnectionException*: >>> > > > > > > > > >>> > *org.apache.zookeeper.KeeperException$ConnectionLossException*: >>> > > > > > > > > KeeperErrorCode =3D ConnectionLoss for /hbase >>> > > > > > > > > >>> > > > > > > > > at >>> > > > org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher.( >>> > > > > > > > > *ZooKeeperWatcher.java:147*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > > > > > > > >>> > > > > > > > >>> > > > > > > >>> > > > > > >>> > > > > >>> > > > >>> > > >>> > >>> org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementa= tion.getZooKeeperWatcher( >>> > > > > > > > > *HConnectionManager.java:998*) >>> > > > > > > > > >>> > > > > > > > > ... 6 more >>> > > > > > > > > >>> > > > > > > > > Caused by: >>> > > > > > > > >>> *org.apache.zookeeper.KeeperException$ConnectionLossException*: >>> > > > > > > > > KeeperErrorCode =3D ConnectionLoss for /hbase >>> > > > > > > > > >>> > > > > > > > > at org.apache.zookeeper.KeeperException.create( >>> > > > > > > > > *KeeperException.java:90*) >>> > > > > > > > > >>> > > > > > > > > at org.apache.zookeeper.KeeperException.create( >>> > > > > > > > > *KeeperException.java:42*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > > org.apache.zookeeper.ZooKeeper.create(*ZooKeeper.java:637*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > > > org.apache.hadoop.hbase.zookeeper.ZKUtil.createAndFailSilent( >>> > > > > > > > > *ZKUtil.java:902*) >>> > > > > > > > > >>> > > > > > > > > at >>> > > > org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher.( >>> > > > > > > > > *ZooKeeperWatcher.java:133*) >>> > > > > > > > > >>> > > > > > > > > ... 7 more >>> > > > > > > > >>> > > > > > > >>> > > > > > >>> > > > > >>> > > > >>> > > >>> > >>> >> >> > --001a113698747b9ce904f145406b--