14

I use ubuntu 12.04, after download and un-tar hbase-0.94.1.jar. I started hbash in standalone mode by the following command

user@ubuntu:~/temp/hbase-0.94.1$ bin/start-hbase.sh 
starting master, logging to /home/user/temp/hbase-0.94.1/bin/../logs/hbase-user-master-ubuntu.out

but when I try to access hbash status UI on

http://localhost:60010

, I got "Unable to connect".

Thanks.

Dan

4

4 回答 4

51

0.98 版本后端口号发生了变化。现在是 16010 而不是 60010)。检查此页面以了解一般 UI 故障排除: http: //hbase.apache.org/book/trouble.tools.html

于 2014-07-21T06:53:34.017 回答
2

首先检查日志文件以查看 HBase 是否正确启动。然后尝试使用IP地址

于 2012-10-28T06:17:33.820 回答
2

首先从您的 hbase 安装路径的日志文件夹中检查“ hbase-hduser-master-ubuntu.log ”文件

如果您收到以下错误

2014-09-07 20:22:24,505 错误 [main] master.HMasterCommandLine: Master exiting java.lang.RuntimeException: HMaster Aborted at org.apache.hadoop.hbase.master.HMasterCommandLine.startMaster(HMasterCommandLine.java:194) at org.apache.hadoop.hbase.master.HMasterCommandLine.run(HMasterCommandLine.java:135) 在 org.apache.hadoop.util.ToolRunner.run(ToolRunner.java:70) 在 org.apache.hadoop.hbase.util。 org.apache.hadoop.hbase.master.HMaster.main(HMaster.java:2794) 上的 ServerCommandLine.doMain(ServerCommandLine.java:126)

比较Hadoopcore -site.xml和hbase的hbase -site.xml。两个文件中的 hdfs URL 应该相同

核心站点.xml

 <configuration>
    <property>
        <name>fs.default.name</name>
        <value>hdfs://192.168.203.130:9000</value>
    </property>
 </configuration>

hbase-site.xml

 <property>
    <name>hbase.rootdir</name>
    <!-- <value>hdfs://localhost:9000/hbase</value> -->
    <value>hdfs://192.168.203.130:9000/hbase</value> 
    <description>The directory shared by RegionServers.
    </description>
 </property>
于 2014-09-07T15:58:30.757 回答
1

请尝试使用http://localhost:16010访问 HBase master web-ui

于 2018-03-28T15:25:41.237 回答