赞
踩
当你想在同一个Neo4J中创建多个database时,你需要看看你的版本,官网的原文解释如下:
The edition of Neo4j determines the number of possible databases:
Installations of Community Edition can have exactly one user database.
Installations of Enterprise Edition can have any number of user databases.
All installations include the system database.
社区版的只能有一个用户数据库,商业版的可以创建多个数据库。system
数据库主要用来存储用户信息,是每个版本都有的。
对于社区版,默认情况下的数据库名称为neo4j
,你可以通过配置进行修改,在Neo4j的安装目录下打开文件/conf/neo4j.conf
,修改如下配置:
# The name of the default database.
#dbms.default_database=neo4j
使用Neo4j Desktop 创建多图数据库,使用Neo4j Desktop你可以很方便的管理Neo4j服务,通过这个可以安装商业版的neo4J服务,这样是可以创建多图数据库的。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。