WebSocket connection failure. Due to security constraints in your web browser

前端 未结 6 861
你的背包
你的背包 2021-01-03 10:22

Today I download neo4j-community-3.2.0 in windows, when i start the server, i meet one problem in browser, i meet this problem in neo4j-community-3.1.2 and i had solved it

6条回答
  •  醉梦人生
    2021-01-03 10:44

    This happens because the browser is trying (under the hood) to also access the bolt port, which uses an unsigned certificate.

    You probably allowed the browser to access the SSL 7474 port through allowing the unsigned certificate as an exception on your browser (and if you didn't, you should in order to make it work). The url was:
    https://[neo4j_host]:7474

    Do the same for the bolt certificate, allow it as an exception for url:
    https://[neo4j_host]:7687

提交回复
热议问题