You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the container we add NEO4J_AUTH=neo4j/test ENV variable
With above settings and all relevant ports exposed container is working fine and we can log into the browser, use .NET HTTP client or bolt to connect to the container etc...
The Issue
For our application we do not require bolt and we would want to disable it. But for troubleshooting we would want to be able to log into the browser to verify node relationships etc.
The documentation at https://neo4j.com/docs/browser-manual/4.4/operations/dbms-connection/
states that we can still access and use neo4j browser like on the old neo4j versions over http by disabling the bolt connector. By default, Neo4j Browser communicates with a Neo4j DBMS via the [Bolt Protocol](https://7687.org/) using the [Neo4j JavaScript Driver](https://neo4j.com/docs/javascript-manual/current/) to execute Cypher queries. However, it is possible to turn off Bolt and use [HTTP(S)] instead, as in older versions of Neo4j Browser.
When we disable bolt on the above working container using ENV variable NEO4J_dbms_connector_bolt_enabled=false we are no longer able to log into the browser. The .NET http client is working fine though...
I have tried to further add these to match my IP address to no avail:
The following error is displayed on Edge Browser WebSocket connection to 'ws://192.168.0.104:7474/' failed: Error during WebSocket handshake: Unexpected response code: 200
Steps to reproduce
docker pull neo4j:4.4.17-community
run container with NEO4J_AUTH=neo4j/test NEO4J_dbms_connector_bolt_enabled=false and expose 7474
Expected Behaviour
Be able to log in as pre neo4j 3.0
Actual Behaviour
WebSocket Error, Unexpected response code:200
The text was updated successfully, but these errors were encountered:
Browser maintainer here, the documention is wrong and we'll make sure to update it. Sadly the javascript driver did not add support for HTTP calls again so browser is bolt only
Might be similar to this issue:
neo4j/docker-neo4j#257
We've got a basic neo4j docker image
FROM neo4j:4.4.17-community
, slightly customised to configure settings and import some data.Bolt and http connectors are enabled during docker build. These are config options we change with Extension script
When running the container we add
NEO4J_AUTH=neo4j/test
ENV variableWith above settings and all relevant ports exposed container is working fine and we can log into the browser, use .NET HTTP client or bolt to connect to the container etc...
The Issue
For our application we do not require bolt and we would want to disable it. But for troubleshooting we would want to be able to log into the browser to verify node relationships etc.
The documentation at https://neo4j.com/docs/browser-manual/4.4/operations/dbms-connection/
states that we can still access and use neo4j browser like on the old neo4j versions over http by disabling the bolt connector.
By default, Neo4j Browser communicates with a Neo4j DBMS via the [Bolt Protocol](https://7687.org/) using the [Neo4j JavaScript Driver](https://neo4j.com/docs/javascript-manual/current/) to execute Cypher queries. However, it is possible to turn off Bolt and use [HTTP(S)] instead, as in older versions of Neo4j Browser.
When we disable bolt on the above working container using ENV variable
NEO4J_dbms_connector_bolt_enabled=false
we are no longer able to log into the browser. The .NET http client is working fine though...I have tried to further add these to match my IP address to no avail:
The following error is displayed on Edge Browser
WebSocket connection to 'ws://192.168.0.104:7474/' failed: Error during WebSocket handshake: Unexpected response code: 200
Steps to reproduce
Expected Behaviour
Be able to log in as pre neo4j 3.0
Actual Behaviour
WebSocket Error, Unexpected response code:200
The text was updated successfully, but these errors were encountered: