Upgrade Community to Enterprise
You can move from any Neo4j 2025-2026 version Community Edition to any Neo4j 2025-2026 version Enterprise Edition using the following steps:
-
Stop the running Neo4j Community Edition server:
bin/neo4j stop -
Backup the
systemandneo4jdatabases using theneo4j-admin database dumpcommand:bin/neo4j-admin database dump neo4jbin/neo4j-admin database dump systemBy default, dumps are located at 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:bin/neo4j-admin database load neo4j --from-path=<path-to-community-neo4j-dump>bin/neo4j-admin database load system --from-path=<path-to-community-system-dump> -
Navigate to the Neo4j Enterprise Edition server and start it:
bin/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;