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: modules/ROOT/pages/database-administration/standard-databases/create-databases.adoc
+52-2Lines changed: 52 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,17 +92,19 @@ Replaced by `existingDataSeedServer`.
92
92
|
93
93
Defines an identical seed from an external source which will be used to seed all servers.
94
94
95
+
For examples, see xref::clustering/databases.adoc#cluster-seed-uri[Seed from URI].
96
+
95
97
| `seedConfig`
96
98
| Comma-separated list of configuration values.
97
99
|
98
-
For more information see xref::clustering/databases.adoc#cluster-seed-uri[Seed from URI].
100
+
99
101
100
102
| `seedCredentials` label:deprecated[Deprecated in 5.26]
101
103
| credentials
102
104
|
103
105
Defines credentials that need to be passed into certain seed providers.
104
106
It is recommended to use the `CloudSeedProvider` seed provider, which does not require this configuration when seeding from cloud storage.
105
-
For more information see xref::clustering/databases.adoc#cloud-seed-provider[CloudSeedProvider].
107
+
For more information, see xref::clustering/databases.adoc#cloud-seed-provider[CloudSeedProvider].
106
108
107
109
| `txLogEnrichment`
108
110
| `FULL` \| `DIFF` \| `OFF`
@@ -214,6 +216,54 @@ The `IF NOT EXISTS` and `OR REPLACE` parts of these commands cannot be used toge
214
216
====
215
217
216
218
219
+
==== Create databases using seeding options
220
+
221
+
Neo4j has built-in support for seed from a mounted file system (file), FTP server, HTTP/HTTPS server, Amazon S3, Google Cloud Storage, and Azure Cloud Storage.
222
+
223
+
For more information on seeding from URI, refer to xref::clustering/databases.adoc#cluster-seed-uri[Manage databases in a cluster -> Seed from URI].
224
+
225
+
.Seed providers supported in Neo4j by default
226
+
[cols="2,1,2",options="header"]
227
+
|===
228
+
| Seed provider
229
+
| URL scheme
230
+
| URI example
231
+
232
+
| `FileSeedProvider`
233
+
| `file:`
234
+
| `file:/tmp/backup1.backup`
235
+
236
+
| `URLConnectionSeedProvider`
237
+
| `ftp:` +
238
+
`http:` +
239
+
`https:`
240
+
| `ftp:://myftp.com/backups/backup1.backup` +
241
+
`/http://myhttp.com/backups/backup1.backup` +
242
+
`/https://myhttp.com/backups/backup1.backup`
243
+
244
+
| `S3SeedProvider` label:deprecated[Deprecated in 5.26]
0 commit comments