I am trying to use data importer for uploading csv file , but when i click connect to my Neo4j desktop app it refuses connection and throws this exception :
Neo4jError
WebSocket connection failure. Due to security constraints in your web browser, the reason for the failure is not available to this Neo4j Driver. Please use your browsers development console to determine the root cause of the failure. Common reasons include the database being unavailable, using the wrong connection URL or temporary network problems. If you have enabled encryption, ensure your browser is configured to trust the certificate Neo4j is configured to use. WebSocket `readyState` is: 3
My failed fixes :
1-I uncommented those two lines :
dbms.connector.bolt.listen_address=:7687
dbms.connector.bolt.advertised_address=:7687
2-I added this line :
dbms.connector.bolt.address=0.0.0.0:7687
Is it possible to connect to Neo4j Desktop app from data importer ?