9.11日记

发布时间 2023-09-11 23:06:50作者: zhangmingmingkjz

HBASE的xml文件的配置

<configuration>
<property>
<name>hbase.rootdir</name>
<value>hdfs://localhost:9000/hbase</value>
</property>
<property>
<name>hbase.cluster.distributed</name>
<value>true</value>
</property>
<property>
<name>hbase.unsafe.stream.capability.enforce</name>
<value>false</value>
</property>

<property>
 <name>hbase.master.ipc.address</name>
 <value>0.0.0.0</value>
</property>
 
<property>
 <name>hbase.regionserver.ipc.address</name>
 <value>0.0.0.0</value>
</property>


</configuration>