1

我正在尝试从 Mac OSx 上的 Rstudio 开始我的图表,通过 devtools 在(对于 R 版本 3.1.2)“startGraph(” http://localhost:7474/db/data/ “)”上安装 RNeo4j,我收到了以下信息错误:

“函数错误(类型、msg、asError = TRUE):连接到 localhost:7474 失败;连接被拒绝”

看起来这是一个错误代码:ERR_CONNECTION_REFUSED 在线搜索,他们建议修改 conf/neo4j-server.properties 文件。但似乎找不到文件来纠正它。

4

5 回答 5

4

检查conf/neo4j.conf,有一行:

# With default configuration Neo4j only accepts local connections.
# To accept non-local connections, uncomment this line:
dbms.connectors.default_listen_address=0.0.0.0
于 2017-08-17T03:41:04.323 回答
1

您使用的是 Neo4j 2.2 吗?如果是这样,您可能需要指定用户名和密码(localhost:7474如果您还没有的话,可以在浏览器中设置)。

于 2015-04-07T13:29:08.857 回答
1

尝试连接到 bolt://127.0.0.1:7687 或查看 $NEO4J_HOME/logs/neo4j.log 文件中的日志。应该有一些错误显示了 neo4j 托管的确切 IP。

于 2019-05-03T02:01:37.007 回答
0

对我来说,我已将本地 IP 地址的名称从localhost更改为localhost.dev

要查看您的设置:

cat /etc/hosts

我的一个看起来像这样

##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
127.0.0.1   localhost.dev
127.0.0.1   api.localhost.dev
于 2016-02-25T08:43:01.857 回答
-1

如果您更喜欢在没有身份验证的情况下连接到 neo4j,可以轻松更改默认设置。2.2.1 版本的相应文档在这里

在文件 conf/neo4j-server.properties 文件中进行以下更改:

# dbms.security.auth_enabled=true
# 
dbms.security.auth_enabled=false
于 2015-04-20T07:15:28.723 回答