-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[QUESTION] Unable to connect to Neo4j Desktop graph instance #560
Comments
I have the same issue. When using the latest version of the driver I cannot connect to my Aura instance at all. I get the same error. |
@es50678 You need to configured the advertised address to be something like While when using docker, log says @MuddyBootsCode Try if you have the same, otherwise, be free to start your own issue. |
@zhenlineo Will do. It's worth noting that this does not occur with version 1.7 of the driver. It's only when I upgraded that I began experiencing issues. |
I changed the following variables in the config file: I tried again and received the same error. I tried with both Both result in the same error message:
In addition, I also tried changing the following config variables in addition to the default advertised address:
@MuddyBootsCode did it work for you after changing the advertised address? Am I changing the wrong config variable? |
The The |
I'm having the same issue using Neo4j desktop and bolt:://localhost:7687. This is happening with both JS and C#.NET. Everything worked fine until I upgraded to 1.1.21. I uninstalled and tried again on 1.2.8 and I have the same issue. I have confirmed that 7687 is not blocked and that the DB is running. I was able to connect using the REST interface in JS. I even disabled TLS in case that was a problem. Was there a change in 1.1.21 that might account for this? It seems that the BOLT protocol just isn't working.
|
I changed:
I tried with the driver using Unfortunately, neither worked, I'm still receiving:
I'm sorry that it took me so long to reply. Thank you all again for helping me out with this ❤️ |
experiencing the same. running neo4j v4 with latest official docker image. On windows 10 host. using
|
index.js
I'm starting my Neo4j instance from Neo4j Desktop. The following is the log output when the instance starts:
Expected behavior
Running
node index.js
should result in:Actual behavior
Running
node index.js
should results in:Workaround
Currently, I'm getting around this by running neo4j in a docker container.
I use the following to start up the docker container:
docker run -p 7474:7474 -p 7687:7687 --env NEO4J_AUTH=neo4j/root neo4j:4.0.1
This is the same version and username/password used in the Neo4j Desktop instance.
The only difference I can see is that it's running in docker.
The following is the log from starting up the docker instance:
Has anyone else ran into this? Can you help point me in the right direction?
I intend to continue using the docker instance instead of Neo4j Desktop, I'm just curious as to what the difference is that's causing my issue.
The text was updated successfully, but these errors were encountered: