HBase程序无法连接到localhost上的ZooKeeper

时间:2015-03-19 02:38:34

标签: hadoop hbase apache-zookeeper

我是HBase的新手,我确信我正确安装了它。在我的终端上,我也可以启动hbase shell,但即使是一个简单的create语句也会出现以下错误: (注意:我试图在独立模式下运行它)

WARN zookeeper.ZKUtil: hconnection Unable to set watcher on znode     (/hbase/hbaseid)
org.apache.zookeeper.KeeperException$ConnectionLossException: KeeperErrorCode = ConnectionLoss for /hbase/hbaseid
at org.apache.zookeeper.KeeperException.create(KeeperException.java:99)
at org.apache.zookeeper.KeeperException.create(KeeperException.java:51)
at org.apache.zookeeper.ZooKeeper.exists(ZooKeeper.java:1041)
at org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.exists(RecoverableZooKeeper.java:193)
at org.apache.hadoop.hbase.zookeeper.ZKUtil.checkExists(ZKUtil.java:450)
at org.apache.hadoop.hbase.zookeeper.ClusterId.readClusterIdZNode(ClusterId.java:61)
........

另外,我在eclipse中只写了两行,我尝试运行它,

public static void main(String[] args) throws MasterNotRunningException, ZooKeeperConnectionException {
    // TODO Auto-generated method stub

    Configuration config = HBaseConfiguration.create();

    HBaseAdmin admin = new HBaseAdmin(config);
}

它给了我以下错误:

15/03/18 22:25:37 INFO zookeeper.ClientCnxn: Opening socket connection to server fe80:0:0:0:0:0:0:1%1/fe80:0:0:0:0:0:0:1%1:2181. Will not attempt to authenticate using SASL (Unable to locate a login configuration)
15/03/18 22:25:38 WARN zookeeper.ClientCnxn: Session 0x0 for server null, unexpected error, closing socket connection and attempting reconnect
java.net.ConnectException: Connection refused
at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:599)
at org.apache.zookeeper.ClientCnxnSocketNIO.doTransport(ClientCnxnSocketNIO.java:350)
at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1068)

可能出现什么问题? 我的/ etc / hosts文件为127.0.0.1 localhost。 还有什么我需要做或改变的吗?

1 个答案:

答案 0 :(得分:0)

http://hbase.apache.org/book.html#quickstart这是设置hbase的非常好的文档。你可能会遗漏一些配置。