Neo4j 3.0安装问题

Neo4j 3.0安装问题,neo4j,Neo4j,使用neo4j 2.3.x community edition,我可以将ip地址设置为本地主机,并更改端口以允许多个实例进行开发 #org.neo4j.server.webserver.address=0.0.0.0 org.neo4j.server.webserver.port=7384 在启动实例时,我通常会收到一条带有ip和端口的确认消息 Starting Neo4j Server...WARNING: not changing user process [28531]... waiti

使用neo4j 2.3.x community edition,我可以将ip地址设置为本地主机,并更改端口以允许多个实例进行开发

#org.neo4j.server.webserver.address=0.0.0.0
org.neo4j.server.webserver.port=7384
在启动实例时,我通常会收到一条带有ip和端口的确认消息

Starting Neo4j Server...WARNING: not changing user
process [28531]... waiting for server to be ready........ OK.
http://localhost:7384/ is ready.
然后,我将使用shell脚本和cypher命令上传数据

$neo/bin/neo4j-shell -path $neo/data/graph.db -file upload.cypher
在neo4j 3.0中,服务器设置略有改变。我打开了HTTP连接、CSV导入和shell连接

dbms.connector.http.enabled=true
dbms.connector.http.address=localhost:7384

dbms.shell.enabled=true
# dbms.shell.host=127.0.0.1
dbms.shell.port=1387
当我启动实例时,我会收到以下消息,其中端口不正确

Starting Neo4j.
Started neo4j (pid 28718). By default, it is available at http://localhost:7474/
There may be a short delay until the server is ready.
使用与neo4j-2.3.x相同的shell脚本上传数据效果良好,没有错误消息,我可以使用neo4j shell查看数据

./neo4j-3.0.0/bin/neo4j-shell -path neo4j-3.0.0/data/graph.db
然而,当我使用主机和端口连接时,我看不到任何数据。此外,当我使用web界面连接时,我也看不到任何数据

./neo4j-3.0.0/bin/neo4j-shell -host localhost -port 1387
我的数据库设置有什么问题吗?
谢谢

在3.0中,数据存储的位置已更改。2.x使用了
data/graph.db
,在3.0中它默认位于
data/databases/graph.db
。因此,您希望将安装脚本更改为:

./neo4j-3.0.0/bin/neo4j-shell -path neo4j-3.0.0/data/databases/graph.db

谢谢你的回答。我感到昏昏欲睡。实际上,在加载时,我创建了一个data/graph.db数据库。