Sanjana Senthil
Sanjana Senthil

Reputation: 119

Can we create multiple users for single neo4j database

I want to create multiple users to access single neo4j database with each user having their own database location. is that possible?

Upvotes: 2

Views: 1036

Answers (3)

Konstantin F
Konstantin F

Reputation: 168

CREATE 
(a:Person {name: 'Joe'}),
(b:Person {name: 'Jill'}),
(c:Person {name: 'Jack'}),
(d:Person {name: 'John'}),
(e:Person {name: 'Jane'}),
(f:Person {name: 'Janice'}) 
RETURN a,b,c,d,e,f;

This can be done in for loop with java or Python, and if you talking about really big data then take a look at it. the CSV file (import data)

Maybe this is not a solution But definitely one of the ways.

Upvotes: 0

MicTech
MicTech

Reputation: 45083

Neo4j doesn't support that, but there is 3rd party solution for that.

Securing Neo4j with GraphAware Enterprise

Upvotes: 1

Stefan Armbruster
Stefan Armbruster

Reputation: 39925

Neo4j does not yet have a concept if simultaneously run multiple databases out of a single installation.

Just install Neo4j multiple times, change the port numbers in the config files appropriately.

Alternatively run the docker image multiple times in parallel.

Upvotes: 0

Related Questions