-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhbase-site.xml
More file actions
30 lines (30 loc) · 769 Bytes
/
hbase-site.xml
File metadata and controls
30 lines (30 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<configuration>
<property>
<name>hbase.rootdir</name>
<value>file:///data2/hbase</value>
</property>
<property>
<name>hbase.zookeeper.property.dataDir</name>
<value>/data2/zookeeper</value>
</property>
<property>
<name>hbase.zookeeper.quorum</name>
<value>zookeeper</value>
</property>
<property>
<name>hbase.zookeeper.property.ClientPort</name>
<value>2181</value>
</property>
<property>
<name>hbase.cluster.distributed</name>
<value>true</value>
</property>
<property>
<name>hbase.regionserver.ipc.address</name>
<value>0.0.0.0</value>
</property>
<property>
<name>hbase.master.ipc.address</name>
<value>0.0.0.0</value>
</property>
</configuration>