Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hosting Neo4J Browser Separately From Server

I want to have three different Neo4J instances running (each with a different database). Then I need three different Neo4J browser visualizers (think project1.domainname.com / project2.domainname.com / project3.domainname.com) with each one mapping to a specific database instance

I've managed to get the three different database instances running on a single Azure VM - so far so good.

But I'm not sure how to create and map those browsers. I'd like to run them each as Azure websites as that would help with some other problems I've forseen.

1) Where is this browser HTML etc. so I can load it to the Azure Website?

2) Where in that code would I specify the IP Address and Port that browser should be talking to?

I've also heard some people talking about an Azure for Neo4J project but that is nearly five years old and the Neo4J guys said to put the database instances on VM's. Were they right>

like image 855
TRH Avatar asked Nov 24 '15 07:11

TRH


People also ask

How can I open Neo4j Browser from Desktop?

Open the Neo4j Browser. Alternatively, you can access this from a regular browser window by typing http://localhost:7474 and signing in with Username: neo4j and Password: <your database password (set up in Desktop)> .

How do I connect my Neo4j Browser?

To connect to the Neo4j server from the console, it is important to be on the path where Neo4j is installed. Once inside the folder called bin of the database, use the command “neo4j console” to start the Neo4j. You can now access the neo4j browser. Once done using, type the Ctrl-C command to stop the server.

Is Neo4j Browser free?

Neo4j Desktop comes with a free Developer License of Neo4j Enterprise Edition. The Java Runtime is also bundled.

Is Neo4j Browser open source?

Neo4j Browser is open source (GNU General Public License v3. 0) and the source code can be found at https://github.com/neo4j/neo4j-browser.


1 Answers

The Neo4j Browser is an angular app that you can find in the neo4j source code at https://github.com/neo4j/neo4j/tree/2.3/community/browser

You can set the host that the browser app can talk to:

:config host:"http://host:port"

This is an undocumented feature and might be removed.

For 3.0 the intent is to decouple browser and Neo4j anyway.

like image 133
Michael Hunger Avatar answered Sep 22 '22 05:09

Michael Hunger