I use neo4j on ubuntu. I want to have two graph db, for regular use and tests. I read article about how switching between two graph db.
I do steps base on article:
cp /etc/neo4j/neo4j.conf /etc/neo4j/neo4j_test/neo4j.conf
# change dbms.active_database=graph.db to # change dbms.active_database=graph_test.db
sudo vim /etc/neo4j/neo4j_test/neo4j.conf
export NEO4J_CONF="/etc/neo4j/neo4j_test"
sudo systemctl restart neo4j
But when I check logs
:
sudo journalctl -f -u neo4j
Config is default conf and didn't changed:
Sep 17 11:18:33 pc2 neo4j[32657]: config: /etc/neo4j
What is my fault? and is another way to switch between 2 graph db?