You must first connect to a database to use Browser Sync in neo4j

10/15/2021

i deployed the neo4j in kubernetes, so when i tried to acess http://<my-external-ip>:7474/ it show me this error( ServiceUnavailable: WebSocket connection failure. Due to security constraints in your web browser, the reason for the failure is not available to this Neo4j Driver.), hoe can i solve it?

-- fredrickson bande
cluster-computing
installation
kubernetes
neo4j
yaml

1 Answer

10/15/2021

You need to uncomment a single line inside $NEO4J_HOME/conf/neo4j.conf:

dbms.connector.bolt.address=0.0.0.0:7687

The issue is well described here

If you're using Neo4j Helm instead of neo4j.conf you will have values.yaml. also it is well described here.

-- degath
Source: StackOverflow