I am running standalone neo4j database server at localhost:7474 on a linode instance.
Is there any way to view this in the browser?
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.