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.

Tranfer/Copy DB data from neo4j on remote linux server to neo4j desktop on windows

MeghanaS
Node Link

Hi All,

I have some data stored on my neo4j present on a remote server. Now I need to copy the data to my neo4j Desktop. Is it possible?

2 REPLIES 2

You can stop the server and then run

neo4j-admin dump --database neo4j --to /tmp/neo4j.dump

then download that file from the server e.g. with scp

and import it in desktop though the UI (click on the file to import it)

MeghanaS
Node Link

Yes, did exactly the same. Thank you