Stuart
Stuart

Reputation: 3258

Point to Neo4J graph data on another drive

I'm trying to set up Neo4J Desktop and hook up an existing graph which was previously running on Community Edition. I've created a new Project and a new local graph but I haven't managed to hook it up to the existing data files.

The graph's data is located on a separate drive (M:) at the root, with the following structure:

graph folder data structure

I've been playing around with the dbms.directories.* settings but I can't seem to get it to handle this structure. It seems to always be expecting something like databases/graph.db/**.

Is it possible to set it up so I keep the data as it is on the M: drive, or do I need to restructure the folders?

Upvotes: 0

Views: 135

Answers (1)

Rajendra Kadam
Rajendra Kadam

Reputation: 4052

@Stuart

I never tried using dbms.directories.*. But I have used for looking data folder and successfully set data folder location on other drive using following conf:

dbms.directories.data=P:/Neo4jDB/

You can try setting Paths of other directories (plugins, logs etc) in the same way.

Upvotes: 1

Related Questions