Neo4j 3.0设置问题

时间:2016-04-30 08:24:37

标签: neo4j

使用neo4j 2.3.x社区版我用来设置本地主机的IP地址,并更改端口以允许多个实例进行开发。

#org.neo4j.server.webserver.address=0.0.0.0
org.neo4j.server.webserver.port=7384

启动实例后,我会用ip和port确认消息。

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

我的数据库设置有什么问题吗? 谢谢!

1 个答案:

答案 0 :(得分:1)

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

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