diff --git a/modules/ROOT/pages/backup-restore/offline-backup.adoc b/modules/ROOT/pages/backup-restore/offline-backup.adoc index bba1f992a..5c5d88016 100644 --- a/modules/ROOT/pages/backup-restore/offline-backup.adoc +++ b/modules/ROOT/pages/backup-restore/offline-backup.adoc @@ -16,7 +16,8 @@ It dumps a database into a single-file archive, called _.dump_, and st Alternatively, `neo4j-admin database dump` can stream dump to standard output, enabling the output to be piped to another program, for example to `neo4j-admin database load`. If the database is hosted in a cluster, make sure that the database is stopped on the server you are connected to. -The command can be run only locally from an online or an offline Neo4j DBMS. +The command can be run only locally from an online or an offline Neo4j DBMS on Enterprise Edition. +On Community Edition, the command can be run only on an offline Neo4j DBMS. It does not support SSL/TLS. [[offline-command-syntax]] diff --git a/modules/ROOT/pages/backup-restore/planning.adoc b/modules/ROOT/pages/backup-restore/planning.adoc index d64819906..b2e7e529f 100644 --- a/modules/ROOT/pages/backup-restore/planning.adoc +++ b/modules/ROOT/pages/backup-restore/planning.adoc @@ -115,7 +115,7 @@ They must be run directly on the databases that are associated with that Composi | Run from an online Neo4j DBMS | {check-mark} -| {check-mark} +| {check-mark} label:enterprise-only[] | {check-mark} | Run from an offline Neo4j DBMS @@ -133,7 +133,7 @@ They must be run directly on the databases that are associated with that Composi | {check-mark} | {cross-mark} -| Run against a Composite databases +| Run against a composite database | {cross-mark} | {cross-mark} | {cross-mark} diff --git a/modules/ROOT/pages/backup-restore/restore-dump.adoc b/modules/ROOT/pages/backup-restore/restore-dump.adoc index dfede9d0c..75e3795bc 100644 --- a/modules/ROOT/pages/backup-restore/restore-dump.adoc +++ b/modules/ROOT/pages/backup-restore/restore-dump.adoc @@ -8,7 +8,9 @@ Starting from Neo4j 5.20, the `neo4j-admin database load` command also supports If you are replacing an existing database, you have to shut it down before running the command and use the `--overwrite-destination` option. + label:enterprise-edition[] If you are not replacing an existing database, you must create the database (using `CREATE DATABASE` against the `system` database) after the load operation finishes. -The command can be run from either an online or offline Neo4j DBMS, and it must be executed as the `neo4j` user to ensure the appropriate file permissions. +The command can be run from either an online or offline Neo4j DBMS on Enterprise edition. +For Community edition, the command can be run only on an offline Neo4j DBMS. +The command must be executed as the `neo4j` user to ensure the appropriate file permissions. [NOTE] ====