How do you create multiple databases on one server using neo4j?
I have multiple clients, and I want to separate all client information into different database to avoid data leaks.
Creating multiple databases on one server using Neo4j
databaseneo4j
Best Solution
You need to have multiple Neo4j installations with a different port configurations in
conf/neo4j.properties
andconf/neo4j-server.properties
.Alternatively you might use some virtualization or container tool like http//docker.io for a more sophisticated approach.