You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/shared/v3-enterprise-get-started/_index.md
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -131,8 +131,15 @@ and provide the following:
131
131
InfluxDB supports the following: local file system (`file`), `memory`,
132
132
S3 (and compatible services like Ceph or Minio) (`s3`),
133
133
Google Cloud Storage (`google`), and Azure Blob Storage (`azure`).
134
-
-`--node-id`: A string identifier that determines the server's storage path
135
-
within the configured storage location, and, in a multi-node setup, is used to reference the node.
134
+
The default is `file`.
135
+
Depending on the object store type, you may need to provide additional options
136
+
for your object store configuration.
137
+
-`--cluster-id`: A string identifier that determines part of the storage path hierarchy. All nodes within the same cluster share this identifier. The storage path follows the pattern `<CONFIGURED_PATH>/<CLUSTER_ID>/<NODE_ID>`. In a multi-node setup, this ID is used to reference the entire cluster.
138
+
-`--node-id`: A string identifier that distinguishes individual server instances within the cluster. This forms the final part of the storage path: `<CONFIGURED_PATH>/<CLUSTER_ID>/<NODE_ID>`. In a multi-node setup, this ID is used to reference specific nodes.
139
+
-_Optional_`--without-auth`: Disables authentication and authorization (admin token and database tokens) for the server. If not specified, authentication is enabled by default.
140
+
141
+
> [!Note]
142
+
> The combined path structure `<CONFIGURED_PATH>/<CLUSTER_ID>/<NODE_ID>` ensures proper organization of data in your object store, allowing for clean separation between clusters and individual nodes.
136
143
137
144
> [!Note]
138
145
> #### Diskless architecture
@@ -189,7 +196,6 @@ docker run -it \
189
196
```bash
190
197
# S3 object store (default is the us-east-1 region)
191
198
# Specify the Object store type and associated options
192
-
193
199
influxdb3 serve \
194
200
--node-id host01 \
195
201
--cluster-id cluster01 \
@@ -203,7 +209,6 @@ influxdb3 serve \
203
209
# Minio or other open source object store
204
210
# (using the AWS S3 API with additional parameters)
205
211
# Specify the object store type and associated options
0 commit comments