File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
content/influxdb3/enterprise/install Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ with your `influxdb3 serve` command:
73
73
{{% code-placeholders "AWS_ (BUCKET_NAME|ACCESS_KEY_ID|SECRET_ACCESS_KEY)" %}}
74
74
<!-- pytest.mark.skip -->
75
75
``` bash
76
- influxdb3 server \
76
+ influxdb3 serve \
77
77
# ...
78
78
--object-store s3 \
79
79
--bucket AWS_BUCKET_NAME \
@@ -103,7 +103,7 @@ with your `influxdb3 serve` command:
103
103
{{% code-placeholders "AZURE_ (CONTAINER_NAME|STORAGE_ACCOUNT|STORAGE_ACCESS_KEY)" %}}
104
104
<!-- pytest.mark.skip -->
105
105
``` bash
106
- influxdb3 server \
106
+ influxdb3 serve \
107
107
# ...
108
108
--object-store azure \
109
109
--bucket AZURE_CONTAINER_NAME \
@@ -128,7 +128,7 @@ with your `influxdb3 serve` command:
128
128
{{% code-placeholders "GOOGLE_ (BUCKET_NAME|SERVICE_ACCOUNT)" %}}
129
129
<!-- pytest.mark.skip -->
130
130
``` bash
131
- influxdb3 server \
131
+ influxdb3 serve \
132
132
# ...
133
133
--object-store google \
134
134
--bucket GOOGLE_BUCKET_NAME \
@@ -163,23 +163,23 @@ Each node can run in one _or more_ of the following modes:
163
163
#### Configure a node to only handle write requests
164
164
<!-- pytest.mark.skip -->
165
165
``` bash
166
- influxdb3 server \
166
+ influxdb3 serve \
167
167
# ...
168
168
--mode ingest
169
169
```
170
170
171
171
#### Configure a node to only run the Compactor
172
172
<!-- pytest.mark.skip -->
173
173
``` bash
174
- influxdb3 server \
174
+ influxdb3 serve \
175
175
# ...
176
176
--mode compact
177
177
```
178
178
179
179
#### Configure a handle query requests and run the processing engine
180
180
<!-- pytest.mark.skip -->
181
181
``` bash
182
- influxdb3 server \
182
+ influxdb3 serve \
183
183
# ...
184
184
--mode query,process
185
185
```
You can’t perform that action at this time.
0 commit comments