Skip to content

Commit 87f2ccc

Browse files
committed
fix(influxdb3): Fix serve command
1 parent 8d21b51 commit 87f2ccc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

content/influxdb3/enterprise/install/multi-server.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ with your `influxdb3 serve` command:
7373
{{% code-placeholders "AWS_(BUCKET_NAME|ACCESS_KEY_ID|SECRET_ACCESS_KEY)" %}}
7474
<!-- pytest.mark.skip -->
7575
```bash
76-
influxdb3 server \
76+
influxdb3 serve \
7777
# ...
7878
--object-store s3 \
7979
--bucket AWS_BUCKET_NAME \
@@ -103,7 +103,7 @@ with your `influxdb3 serve` command:
103103
{{% code-placeholders "AZURE_(CONTAINER_NAME|STORAGE_ACCOUNT|STORAGE_ACCESS_KEY)" %}}
104104
<!-- pytest.mark.skip -->
105105
```bash
106-
influxdb3 server \
106+
influxdb3 serve \
107107
# ...
108108
--object-store azure \
109109
--bucket AZURE_CONTAINER_NAME \
@@ -128,7 +128,7 @@ with your `influxdb3 serve` command:
128128
{{% code-placeholders "GOOGLE_(BUCKET_NAME|SERVICE_ACCOUNT)" %}}
129129
<!-- pytest.mark.skip -->
130130
```bash
131-
influxdb3 server \
131+
influxdb3 serve \
132132
# ...
133133
--object-store google \
134134
--bucket GOOGLE_BUCKET_NAME \
@@ -163,23 +163,23 @@ Each node can run in one _or more_ of the following modes:
163163
#### Configure a node to only handle write requests
164164
<!-- pytest.mark.skip -->
165165
```bash
166-
influxdb3 server \
166+
influxdb3 serve \
167167
# ...
168168
--mode ingest
169169
```
170170

171171
#### Configure a node to only run the Compactor
172172
<!-- pytest.mark.skip -->
173173
```bash
174-
influxdb3 server \
174+
influxdb3 serve \
175175
# ...
176176
--mode compact
177177
```
178178

179179
#### Configure a handle query requests and run the processing engine
180180
<!-- pytest.mark.skip -->
181181
```bash
182-
influxdb3 server \
182+
influxdb3 serve \
183183
# ...
184184
--mode query,process
185185
```

0 commit comments

Comments
 (0)