Upgrade Community to Enterprise
You can move from Neo4j 2025.x.y Community Edition to Neo4j 2025.x.y Enterprise Edition using the following steps.
-
Stop the running Neo4j Community Edition server:
neo4j stop
-
Backup the
system
andneo4j
databases using theneo4j-admin database dump
command:neo4j-admin database dump neo4j
neo4j-admin database dump system
By default, dumps are located to data/dumps/. Alternatively, the location can be defined via the conf/neo4j.conf setting
server.directories.dumps.root
. -
Uninstall the Neo4j Community Edition server.
-
Download and install the Neo4j Enterprise Edition server following the instructions in the Neo4j Operations Manual → Installation.
-
Load the
system
andneo4j
databases into the Neo4j Enterprise Edition server usingneo4j-admin database load
:neo4j-admin database load neo4j --from-path=<path-to-community-neo4j-dump>
neo4j-admin database load system --from-path=<path-to-community-system-dump>
-
Navigate to the Neo4j Enterprise Edition server and start it:
neo4j start
The
system
database is automatically upgraded when safe. -
Drop the existing
neo4j
database that was created by default on startup. Note, this does not remove any store files loaded vianeo4j-admin database load
.DROP DATABASE neo4j;
-
Create the
neo4j
database using the store files loaded vianeo4j-admin database load
:CREATE DATABASE neo4j;