From 34f8a7dfaa9ef8a2f0fefb52b2496d428e62911f Mon Sep 17 00:00:00 2001 From: Biju Nair Date: Tue, 28 May 2019 22:06:36 -0400 Subject: [PATCH] HBASE-12169 Document IPC binding options --- src/main/asciidoc/_chapters/ops_mgt.adoc | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git src/main/asciidoc/_chapters/ops_mgt.adoc src/main/asciidoc/_chapters/ops_mgt.adoc index 9cbe3d359b..4a386fd0fc 100644 --- src/main/asciidoc/_chapters/ops_mgt.adoc +++ src/main/asciidoc/_chapters/ops_mgt.adoc @@ -30,6 +30,28 @@ This chapter will cover operational tools and practices required of a running Apache HBase cluster. The subject of operations is related to the topics of <>, <>, and <> but is a distinct topic in itself. +== Binding HBase processes to specific address + +The following properties can be used to bind HBase processes to specific address. + +[[hbase.master.ipc.address]] +*`hbase.master.ipc.address`*:: + +.Description +The bind address for master IPC. Specify to 0.0.0.0 for all interfaces. + +.Default +`${hbase.master.dns.interface}` + +[[hbase.regionserver.ipc.address]] +*`hbase.regionserver.ipc.address`*:: + +.Description +The bind address for region server IPC. Specify to 0.0.0.0 for all interfaces. + +.Default +`${hbase.regionserver.dns.interface}` + [[tools]] == HBase Tools and Utilities -- 2.20.1 (Apple Git-117)