1

我是neo4j的新手。我需要针对单个 neo4j 实例运行多个不同的应用程序。

例如,在 MySQL 世界中,如果我有一个 petstore 应用程序、一个 wordpress 博客和一个日历应用程序,我会简单地:

create database petstore;
grant all privileges on petstore.* to 'petstore'@localhost identified by 'sompass'

create database mywrodpressite;
grant all privileges on mywrodpressite.* to 'mywrodpressite'@localhost identified by 'sompass';

create database mycalendar;
grant all privileges on mycalendar.* to 'mycalendar'@localhost identified by 'sompass';

我的三个应用程序将彼此隔离。

问题:如何使用 Neo4j 完成这个场景?

这里有一个类似的问题,但我认为答案与我正在尝试做的事情无关。

4

1 回答 1

3

Neo4J 不强制数据级别的安全性。

但是,您可以实现 aSecurityRule并将其注册到服务器上。

有关这方面的更多信息,请参阅 Neo4J 手册的安全章节

于 2013-02-14T08:57:58.147 回答