Copying a local database from one computer to another ne04j

I created a Neo4j database on a PC, with many relationships, node, etc. How to move / copy a database from this computer to another? Thank you for helping Francesco.

update1: I tried to find conf / neo4j-server.properties, but I don’t have ... this is a screenshot of my ne04j folder (it is located in the folder with Windows documents) http://s12.postimg.org/vn4e22s3x/fold.jpg

+4
source share
3 answers

Neo4J databases live on your file system, you can simply make a copy of the folder where your Neo4J data is stored. If you work offline, this folder will be configured in conf/neo4j-server.properties, and the line will look something like this:

org.neo4j.server.database.location=data/graph.db

. , , .

+7

, dump, Cypher create, "" .

: Neo4j docs

+2

, .

in the data folder, neo4jfind the folder with the name confand inside the configuration file with the name neo4j.confinside this file you will see a line that is neo4j.confon the folder containing the data. it is called "graph.db" and replaces it with the same folder from your database backup that you want to clone.

0
source

All Articles