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
systemandneo4jdatabases using theneo4j-admin database dumpcommand:neo4j-admin database dump neo4jneo4j-admin database dump systemBy 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
systemandneo4jdatabases 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 startThe
systemdatabase is automatically upgraded when safe. -
Drop the existing
neo4jdatabase 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
neo4jdatabase using the store files loaded vianeo4j-admin database load:CREATE DATABASE neo4j;