Document adding node to existing cluster (#3202)
* Remove duplicate content * delete duplicate lines * Create Manage clusters menu folder * Move rebalancing and replacing node guides to new folder. * Document adding node to existing cluster * Add alias for replacing nodes doc Co-authored-by: kelseiv <47797004+kelseiv@users.noreply.github.com>pull/3385/head
parent
c6df2b2c06
commit
781d57d506
|
@ -1,34 +0,0 @@
|
|||
---
|
||||
title: Manage InfluxDB Enterprise clusters
|
||||
description: >
|
||||
Use the `influxd-ctl` and `influx` command line tools to manage InfluxDB Enterprise clusters and data.
|
||||
aliases:
|
||||
- /enterprise/v1.8/features/cluster-commands/
|
||||
- /enterprise_influxdb/v1.9/features/cluster-commands/
|
||||
- /enterprise_influxdb/v1.9/administration/cluster-commands/
|
||||
menu:
|
||||
enterprise_influxdb_1_9:
|
||||
name: Manage clusters
|
||||
weight: 30
|
||||
parent: Manage
|
||||
---
|
||||
|
||||
Use the following tools to manage and interact with your InfluxDB Enterprise clusters:
|
||||
|
||||
- To manage clusters and nodes, back up and restore data, and rebalance clusters, use the [`influxd-ctl` cluster management utility](#influxd-ctl-cluster-management-utility)
|
||||
- To write and query data, use the [`influx` command line interface (CLI)](#influx-command-line-interface-cli)
|
||||
|
||||
## `influxd-ctl` cluster management utility
|
||||
|
||||
The [`influxd-ctl`](/enterprise_influxdb/v1.9/tools/influxd-ctl/) utility provides commands for managing your InfluxDB Enterprise clusters.
|
||||
Use the `influxd-ctl` cluster management utility to manage your cluster nodes, back up and restore data, and rebalance clusters.
|
||||
The `influxd-ctl` utility is available on all [meta nodes](/enterprise_influxdb/v1.9/concepts/glossary/#meta-node).
|
||||
|
||||
For more information, see [`influxd-ctl`](/enterprise_influxdb/v1.9/tools/influxd-ctl/).
|
||||
|
||||
## `influx` command line interface (CLI)
|
||||
|
||||
Use the `influx` command line interface (CLI) to write data to your cluster, query data interactively, and view query output in different formats.
|
||||
The `influx` CLI is available on all [data nodes](/enterprise_influxdb/v1.9/concepts/glossary/#data-node).
|
||||
|
||||
See [InfluxDB command line interface (CLI/shell)](/enterprise_influxdb/v1.9/tools/influx-cli/use-influx/) for details on using the `influx` command line interface.
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
title: Manage InfluxDB Enterprise clusters
|
||||
description: >
|
||||
Use the `influxd-ctl` and `influx` command line tools to manage InfluxDB Enterprise clusters and data.
|
||||
aliases:
|
||||
- /enterprise/v1.8/features/cluster-commands/
|
||||
- /enterprise_influxdb/v1.9/features/cluster-commands/
|
||||
- /enterprise_influxdb/v1.9/administration/cluster-commands/
|
||||
menu:
|
||||
enterprise_influxdb_1_9:
|
||||
name: Manage clusters
|
||||
weight: 30
|
||||
parent: Manage
|
||||
---
|
||||
|
||||
Use the following tools to manage and interact with your InfluxDB Enterprise clusters:
|
||||
|
||||
- [`influxd-ctl`](/enterprise_influxdb/v1.9/tools/influxd-ctl/) cluster management utility
|
||||
- [`influx`](/enterprise_influxdb/v1.9/tools/influx-cli/use-influx/) command line interface (CLI)
|
||||
|
||||
{{< children >}}
|
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
title: Add node to existing cluster
|
||||
description: Add nodes to an existing InfluxDB Enterprise cluster.
|
||||
aliases:
|
||||
menu:
|
||||
enterprise_influxdb_1_9:
|
||||
name: Add nodes
|
||||
parent: Manage clusters
|
||||
weight: 19
|
||||
---
|
||||
|
||||
To add a data node to an existing cluster, follow the steps below.
|
||||
|
||||
1. Install and start a new data node.
|
||||
Complete steps 1–3 of the [data node installation instructions](/enterprise_influxdb/v1.9/introduction/install-and-deploy/installation/data_node_installation/#step-1-add-appropriate-dns-entries-for-each-of-your-servers).
|
||||
2. To join the new node to the cluster, do one of the following:
|
||||
- From a meta node, run:
|
||||
```sh
|
||||
influxd-ctl add-data <new data node address>:<port>
|
||||
```
|
||||
- From a remote server, run:
|
||||
|
||||
```sh
|
||||
influxd-ctl -bind <existing_meta_node:8091> add-data <new data node
|
||||
address>:<port>
|
||||
```
|
||||
3. (Optional) [Rebalance the cluster](/enterprise_influxdb/v1.9/administration/manage/clusters/rebalance/).
|
|
@ -3,11 +3,12 @@ title: Rebalance InfluxDB Enterprise clusters
|
|||
description: Manually rebalance an InfluxDB Enterprise cluster.
|
||||
aliases:
|
||||
- /enterprise/v1.8/guides/rebalance/
|
||||
- /enterprise/v1.9/guides/rebalance/
|
||||
menu:
|
||||
enterprise_influxdb_1_9:
|
||||
name: Rebalance clusters
|
||||
weight: 19
|
||||
parent: Guides
|
||||
parent: Manage clusters
|
||||
weight: 21
|
||||
---
|
||||
|
||||
## Introduction
|
|
@ -1,11 +1,13 @@
|
|||
---
|
||||
title: Replace InfluxDB Enterprise cluster meta nodes and data nodes
|
||||
description: Replace meta and data nodes in an InfluxDB Enterprise cluster.
|
||||
aliases:
|
||||
- /enterprise_influxdb/v1.9/guides/replacing-nodes/
|
||||
menu:
|
||||
enterprise_influxdb_1_9:
|
||||
name: Replace cluster nodes
|
||||
weight: 10
|
||||
parent: Guides
|
||||
name: Replace nodes
|
||||
parent: Manage clusters
|
||||
weight: 20
|
||||
---
|
||||
|
||||
## Introduction
|
|
@ -17,9 +17,6 @@ The `influxd-ctl` utility is available on all [meta nodes](/enterprise_influxdb/
|
|||
|
||||
## `influxd-ctl` cluster management utility
|
||||
|
||||
Use the `influxd-ctl` cluster management utility to manage your cluster nodes, back up and restore data, and rebalance clusters.
|
||||
The `influxd-ctl` utility is available on all [meta nodes](/enterprise_influxdb/v1.9/concepts/glossary/#meta-node).
|
||||
|
||||
* [Syntax](#syntax)
|
||||
* [Global options](#global-options)
|
||||
* [`-auth-type`](#auth-type-none-basic-jwt)
|
||||
|
|
Loading…
Reference in New Issue