Search code examples
neo4jlinode

How to view neo4j database on the hosted linode server


I am running standalone neo4j database server at localhost:7474 on a linode instance.

Is there any way to view this in the browser?


Solution

  • If you have SSH access to the Linode instance then you can run ssh -L 7474:localhost:7474 [email protected] which will tunnel the remote port 7474 to localhost 7474. In your browser you can now use http://localhost:7474 to see the remote server without opening anything to the world.