From 52314338268564daf1f856c5d3b41d25ce415023 Mon Sep 17 00:00:00 2001 From: Melissa Vagi Date: Wed, 14 Jun 2023 18:25:28 -0600 Subject: [PATCH] Revert "updateinfo (#4304)" This reverts commit c84983f2dbe9f2db8810365d31951fbe994ef2d2. Signed-off-by: Melissa Vagi --- _tuning-your-cluster/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_tuning-your-cluster/index.md b/_tuning-your-cluster/index.md index 8172cfff18..5365b88c66 100644 --- a/_tuning-your-cluster/index.md +++ b/_tuning-your-cluster/index.md @@ -120,16 +120,16 @@ node.roles: [] ## Step 3: Bind a cluster to specific IP addresses -`network.bind_host` defines the IP address used to bind the node. By default, OpenSearch listens on a local host, which limits the cluster to a single node. You can also use `_local_` and `_site_` to bind to any loopback or site-local address, whether IPv4 or IPv6: +`network_host` defines the IP address used to bind the node. By default, OpenSearch listens on a local host, which limits the cluster to a single node. You can also use `_local_` and `_site_` to bind to any loopback or site-local address, whether IPv4 or IPv6: ```yml -network.bind_host: [_local_, _site_] +network.host: [_local_, _site_] ``` To form a multi-node cluster, specify the IP address of the node: ```yml -network.bind_host: +network.host: ``` Make sure to configure these settings on all of your nodes.