Skip to content

Commit bf08b5c

Browse files
authored
Merge branch 'master' into monolith-db-table-limits
2 parents c36c2d7 + 113c828 commit bf08b5c

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

content/influxdb3/enterprise/get-started/multi-server.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ Configure nodes with specific _modes_ (ingest, query, process, compact) to optim
2222

2323
## Basic multi-node setup
2424

25+
> [!Note]
26+
> The examples in this guide assume each node runs on a distinct host and uses the default port (8181).
27+
> If you run multiple nodes on the same host for testing or development, specify a different port for each node using the `--http-bind` option--for example, `--http-bind localhost:8282`.
28+
2529
<!-- pytest.mark.skip -->
2630
```bash
2731
## NODE 1 compacts stored data
@@ -57,7 +61,6 @@ influxdb3 serve \
5761
--mode ingest,query \
5862
--object-store s3 \
5963
--bucket influxdb-3-enterprise-storage \
60-
--http-bind localhost:8282 \
6164
--aws-access-key-id AWS_ACCESS_KEY_ID \
6265
--aws-secret-access-key AWS_SECRET_ACCESS_KEY
6366
```
@@ -133,7 +136,7 @@ with your `influxdb3 serve` command:
133136

134137
- `--object-store`: `azure`
135138
- `--bucket`: Your Azure Blob Storage container name
136-
- `--azure-storage-account`: Your Azure Blob Storage storage account name
139+
- `--azure-storage-account`: Your Azure Blob Storage account name
137140
_(can also be defined using the `AZURE_STORAGE_ACCOUNT` environment variable)_
138141
- `--aws-secret-access-key`: Your Azure Blob Storage access key
139142
_(can also be defined using the `AZURE_STORAGE_ACCESS_KEY` environment variable)_
@@ -160,7 +163,7 @@ with your `influxdb3 serve` command:
160163

161164
- `--object-store`: `google`
162165
- `--bucket`: Your Google Cloud Storage bucket name
163-
- `--google-service-account`: The path to to your Google credentials JSON file
166+
- `--google-service-account`: The path to your Google credentials JSON file
164167
_(can also be defined using the `GOOGLE_SERVICE_ACCOUNT` environment variable)_
165168

166169
{{% code-placeholders "GOOGLE_(BUCKET_NAME|SERVICE_ACCOUNT)" %}}
@@ -286,7 +289,6 @@ influxdb3 serve \
286289
--mode ingest,query \
287290
--object-store s3 \
288291
--bucket influxdb-3-enterprise-storage \
289-
--http-bind localhost:8282 \
290292
--aws-access-key-id AWS_ACCESS_KEY_ID \
291293
--aws-secret-access-key AWS_SECRET_ACCESS_KEY
292294
```
@@ -343,7 +345,6 @@ The following examples sets up high availability with a dedicated Compactor node
343345
--mode ingest,query \
344346
--object-store s3 \
345347
--bucket influxdb-3-enterprise-storage \
346-
--http-bind localhost:8282 \
347348
--aws-access-key-id <AWS_ACCESS_KEY_ID> \
348349
--aws-secret-access-key <AWS_SECRET_ACCESS_KEY>
349350
```
@@ -415,7 +416,6 @@ ingest nodes alongside query nodes and a dedicated Compactor node.
415416
--mode ingest \
416417
--object-store s3 \
417418
--bucket influxdb-3-enterprise-storage \
418-
--http-bind localhost:8282 \
419419
--aws-access-key-id <AWS_ACCESS_KEY_ID> \
420420
--aws-secret-access-key <AWS_SECRET_ACCESS_KEY>
421421
```
@@ -459,7 +459,6 @@ ingest nodes alongside query nodes and a dedicated Compactor node.
459459
--mode query \
460460
--object-store s3 \
461461
--bucket influxdb-3-enterprise-storage \
462-
--http-bind localhost:8383 \
463462
--aws-access-key-id <AWS_ACCESS_KEY_ID> \
464463
--aws-secret-access-key <AWS_SECRET_ACCESS_KEY>
465464
```
@@ -478,7 +477,6 @@ ingest nodes alongside query nodes and a dedicated Compactor node.
478477
--mode query \
479478
--object-store s3 \
480479
--bucket influxdb-3-enterprise-storage \
481-
--http-bind localhost:8484 \
482480
--aws-access-key-id <AWS_ACCESS_KEY_ID> \
483481
<AWS_SECRET_ACCESS_KEY>
484482
```

0 commit comments

Comments
 (0)