我们在这里有一个本地网络,在我们安装了 neo4j 服务器的一台计算机上。现在进行测试,我想从同一网络上的计算机访问它。我正在努力这样做吗?
我是否在 neo4j-server.properties 文件中执行任何操作?
# Let the webserver only listen on the specified IP. Default is localhost (only
# accept local connections). Uncomment to allow any connection. Please see the
# security section in the neo4j manual before modifying this.
org.neo4j.server.webserver.address=0.0.0.0
我会在我的代码中输出什么来从那台机器访问它?
clientConnection = new GraphClient(new Uri("http://localhost:7474/db/data"));
我可以这样做吗?
clientConnection = new GraphClient(new Uri("http://DevPC1:7474/db/data"));