Skip to content

Commit 97e17c1

Browse files
Turn 5th level headings into the descr list (#2130)
Improve the formatting on the page _Manage db in cluster_. Based on the PR #2124
1 parent 7f60c38 commit 97e17c1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

modules/ROOT/pages/clustering/databases.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -334,35 +334,35 @@ If not used stores were more up to date than the used ones, this results in data
334334
====
335335

336336
[[specified-servers]]
337-
===== Specified servers
337+
Specified servers::
338338

339339
You can specify a set of available servers.
340340
The stores on all allocations will be synchronized to the most up-to-date store from the defined servers.
341341
The number of defined servers cannot exceed the number of total allocations in the desired topology.
342-
342+
+
343343
[source, shell]
344344
----
345345
CALL dbms.cluster.recreateDatabase("neo4j", {seedingServers: ["serverId1", "serverId2", "serverId3"]});
346346
----
347347

348348
[[undefined-servers]]
349-
===== Undefined servers
349+
Undefined servers::
350350

351351
If you provide an empty list of seeding servers and do not specify a `seedURI`, Neo4j automatically selects all available allocations of the database as seeders.
352352
The store will be replaced by the most up-to-date seeder available in the cluster.
353-
353+
+
354354
[source, shell]
355355
----
356356
CALL dbms.cluster.recreateDatabase("neo4j", {seedingServers: []});
357357
----
358358

359359
[[undefined-servers-backup]]
360-
===== Undefined servers with fallback backup
360+
Undefined servers with fallback backup::
361361

362362
If both an empty list of seeding servers and a `seedURI` are provided, Neo4j finds all available allocations of the database and use those as seeders.
363363
However, if no available servers can be found, the database is recreated based on the backup or the dump defined by the URI.
364364
This means the store is replaced by the most up-to-date seeder if available; otherwise, the backup is used.
365-
365+
+
366366
[source, shell]
367367
----
368368
CALL dbms.cluster.recreateDatabase("neo4j", {seedingServers: [], seedURI: "s3:/myBucket/myBackup.backup"});

0 commit comments

Comments
 (0)