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

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?

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)

Yes, did exactly the same. Thank you