我正在使用debian发行版。我在windows中编写代码,但我没有错误,我创建了一个数据库。尽管我在Debian中编写库,但我的数据库没有创建,数据没有添加,在java程序中有没错。
我的数据库路径。
dbPath=/var/lib/neo4j/data/graph.db
我猜错误发生在数据库比例上。 我有两种不同的比例,所以我不知道如何设置这个设置。
-etc/neo4j
-/var/lib/neo4j/conf
答案 0 :(得分:0)
您应该拥有通常以
开头的/etc/neo4j/neo4j-server.properties
文件
################################################################
# Neo4j configuration
#
################################################################
#***************************************************************
# Server configuration
#***************************************************************
# location of the database directory
org.neo4j.server.database.location=data/graph.db
...
...
数据库路径是相对的。 如果你想要一个绝对路径,你应该有这一行:
org.neo4j.server.database.location=/var/lib/neo4j/data/graph.db