We have a local network here and on on one of the computers we have neo4j server installed. Now for testing I would like to access it from my computer on the same network. I am struggling to do so?
Do I do anything here in the neo4j-server.properties file?
# 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
What would I out in my code to access it from that machine?
clientConnection = new GraphClient(new Uri("http://localhost:7474/db/data"));
Could I just do this?
clientConnection = new GraphClient(new Uri("http://DevPC1:7474/db/data"));