How to achieve multi-user experience in Neo4j
1 answer
I don't find it possible to run different instances from the same installation. The neo4j software is self-contained, so you can have two copies of neo4j in different directories on the same server with different ports. In each of them, you can separately configure the port in the file conf/neo4j-server.properties
. It also has a nice feature: if you need to configure two tenants differently for different usage patterns, you can configure them separately.
+1
source to share