无法切换neo4j数据库

Unable to switch neo4j database

我是 neo4j 的新手,我正在使用“neo4j-community-3.0.1”。我想切换数据库并检索节点。在 google 我找到 how to switch database 之后。但是没有名称为

的文件

conf/neo4j-server.properties

有两个文件 neo4j.conf 和 neo4j-wrapper.conf 。但是没有这样的配置
org.neo4j.server.database.location=data/graph.db

任何人都可以帮助我如何切换数据库并且我能够看到节点正在使用 浏览器

从Neo4J 3.0开始,所有的配置文件都被精简并统一到一个文件中。即“neo4j.conf”。

您需要更改此文件中的数据库路径。

如果您正在使用 Linux,可以在

找到该文件

/etc/neo4j/neo4j.conf

您需要更改的实际条目将是

dbms.directories.data=/var/lib/neo4j/data

如果您使用 Neo4J 社区的 windows 客户端。在启动数据库之前,您应该可以选择浏览到数据库目录。

引用此 link。 http://neo4j.com/blog/neo4j-3-0-massive-scale-developer-productivity/

"The new file, config and log structures in Neo4j 3.0 are designed to streamline operations and to bring Neo4j better into line with operational IT expectations. One notable change is to move from multiple config files to a single namespaced files."

操作手册可能对您也有用。 http://neo4j.com/docs/operations-manual/current/