Remote connection to Neo4j server

前端 未结 6 1339
我寻月下人不归
我寻月下人不归 2021-02-13 01:09

I believe the way to creating a remote connection is by changing this line in conf/neo4j-server.properties, specifically by removing the comment and restarting the

6条回答
  •  一生所求
    2021-02-13 01:10

    Also if you have ssh access to remote server with neo4j you can setup ssh tunnel to access it via localhost:

    ssh -NfL localhost:7474:localhost:7474 -L localhost:7687:localhost:7687 yourname@yourhost
    

    then type in browser:

    localhost:7474
    

提交回复
热议问题