cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Is it possible to store a graph db in an external hard drive?

I have installed neo4j in my personal laptop and the graph db I'm analyzing keeps growing. Is it possible to move the graph db to an external SSD, load it from there and keep adding more nodes and edges?

Thanks!
Andreas

1 ACCEPTED SOLUTION

Hi @and.manousakis

You can change "dbms.directories.data" in neo4j.conf.
And restart Neo4j.

This code is an example.
Set it to your drive and name

#dbms.directories.data=data
dbms.directories.data=D:/MyNeo4jDBData/

View solution in original post

2 REPLIES 2

Hi @and.manousakis

You can change "dbms.directories.data" in neo4j.conf.
And restart Neo4j.

This code is an example.
Set it to your drive and name

#dbms.directories.data=data
dbms.directories.data=D:/MyNeo4jDBData/

Hi @koji

Thank you for the reply - It worked! 🙂