I'm using Ubuntu 16.04 with Neo4j version 3 and I'm trying to import data using this batch importer.
I've followed the tutorial and I managed to create test.db.
My question is: how do I make test.db
the database used by neo4j?
this question says to change this line dbms.directories.data=/var/lib/neo4j/data
inside
/etc/neo4j/neo4j.conf
file.
How should I change dbms.directories.data=/var/lib/neo4j/data
?
Inside /var/lib/neo4j/data
I have 2 folders: databases
and dbms
. Do I have to move my test.db
folder inside the databases
folder (which contains a graph.db
folder) or what?
I tried moving test.db
inside the data folder (at the same level of dbms
and databases
folders) and I changed the line in dbms.directories.data=/var/lib/neo4j/data/test.db
but it seems it doesn't work.