3

有人知道hbase有什么问题吗?我正在为 hadoop 使用 cloudera 分发的 vm 映像,以前它工作正常,但现在当我尝试列出所有表时,每秒都会给我这个错误:

10/12/26 06:48:07 INFO ipc.HbaseRPC:尝试 1 次后无法访问 /127.0.0.1:58920 的服务器,放弃。

4

2 回答 2

1

The problem is in the configuration. For some reason it can't see either where the zookeeper quorum is or where the hbase master is. You should never see 127.0.0.1 in your logs. Probably the configuration file is missing or incorrect. I believe that there is an hbase FAQ on this: http://wiki.apache.org/hadoop/Hbase/Troubleshooting

于 2011-01-12T01:03:05.070 回答
1

我在 Ubuntu 11.10 上遇到了同样的问题。默认安装在 /etc/hosts 中添加了一行,它将我的机器主机名与 IP 127.0.1.1 链接起来。
我将此链接更改为指向 127.0.0.1 并且 Hbase 开始工作。

此外,其他计算机上类似问题的解决方案是禁用 IP 表或注释掉 /etc/hosts 中的 IPv6 地址。

希望这可以帮助!

于 2011-10-26T13:17:02.543 回答