gpt4 book ai didi

Neo4j 3.0 设置问题

转载 作者:行者123 更新时间:2023-12-02 03:16:09 25 4
gpt4 key购买 nike

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

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

启动实例后,我会收到一 strip 有 ip 和端口的确认消息。

Starting Neo4j Server...WARNING: not changing user
process [28531]... waiting for server to be ready........ OK.
http://localhost:7384/ is ready.

然后我会使用 shell 脚本和密码命令上传数据。

$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

但是,当我改为使用主机和端口连接时,我看不到任何数据。此外,当我使用网络界面连接时,我也看不到任何数据。

./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

关于Neo4j 3.0 设置问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36952588/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com