Java HBase-创建表时出错

Java HBase-创建表时出错,java,hadoop,hbase,Java,Hadoop,Hbase,我正在尝试安装Hbase(Hbase-0.94.8)。 我遵循了本页中给出的步骤 我可以启动Hbase并进入shell,但当我从shell中键入create“t1”和“c1”时,引发了以下错误 hbase(main):001:0> create 't1','c1' 14/03/15 10:23:16 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zooke

我正在尝试安装Hbase(Hbase-0.94.8)。 我遵循了本页中给出的步骤

我可以启动Hbase并进入shell,但当我从shell中键入create“t1”和“c1”时,引发了以下错误

hbase(main):001:0> create 't1','c1'
14/03/15 10:23:16 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.
14/03/15 10:23:18 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.
14/03/15 10:23:19 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.
14/03/15 10:23:21 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.
14/03/15 10:23:23 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.
14/03/15 10:23:27 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.
14/03/15 10:23:31 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.

ERROR: org.apache.hadoop.hbase.MasterNotRunningException: Retried 7 times

Here is some help for this command:
Create table; pass table name, a dictionary of specifications per
column family, and optionally a dictionary of table configuration.
Dictionaries are described below in the GENERAL NOTES section.
Examples:

  hbase> create 't1', {NAME => 'f1', VERSIONS => 5}
  hbase> create 't1', {NAME => 'f1'}, {NAME => 'f2'}, {NAME => 'f3'}
  hbase> # The above in shorthand would be the following:
  hbase> create 't1', 'f1', 'f2', 'f3'
  hbase> create 't1', {NAME => 'f1', VERSIONS => 1, TTL => 2592000, BLOCKCACHE => true}
  hbase> create 't1', 'f1', {SPLITS => ['10', '20', '30', '40']}
  hbase> create 't1', 'f1', {SPLITS_FILE => 'splits.txt'}
  hbase> # Optionally pre-split the table into NUMREGIONS, using
  hbase> # SPLITALGO ("HexStringSplit", "UniformSplit" or classname)
  hbase> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}


hbase(main):002:0> 
错误:org.apache.hadoop.hbase.MasterNotRunningException:重试7次 时代


这意味着HBase主机未运行。请确认它正在运行,然后再次尝试创建表

上面显示的错误原因是什么?不管怎么说,我也面临着同样的问题。