Christopher Morse
Christopher Morse

Reputation: 59

Neo4j Implementation on the Web

Just got out of a Neo4j training session where we created a wonderfully complex database on our localhost server, but I can't figure out how I can transfer this database for use on my actual website. All of the documentation I'm finding online is about installing it to a localhost server, but how can I access and query this information via my actual website? Is it as simple as copying the graph.db folder into my public_html folder online and somehow linking it to one of the language drivers? I can't find documentation anywhere that gives a straightforward explanation. Will I need extensive knowledge of Java in order to do this?

Thanks!

Upvotes: 2

Views: 277

Answers (1)

Michael Hunger
Michael Hunger

Reputation: 41706

You have to use a cloud deployed Neo4j server or install the Neo4j server on your own internet accessible server (much like mysql)

then you can use one of the many drivers to connect to the server and import data or query it. http://www.neo4j.org/develop/drivers

Upvotes: 1

Related Questions