I intend to create a project with Neo4J and Django through Neomodel. I have downloaded and installed all the required software on my computer. I however encounter 2 main problems with Neo4J :
- I don’t understand how to use alternatively or together (knowing I code in Django):
a. the desktop browser
b. the http://localhost:7474/browser/
c. a browser more linked to http://127.0.0.1:8000/myproject/ to display a first set of nodes created with Django and Neomodel
- Anyway, there is an issue because of the password with any of them
a. the desktop browser → « Database failed to create: Error: Could not change password »
b. the http://localhost:7474/browser/ → I could connect to it after uncommenting :
dbms.security.auth_enabled=false in the « README.txt »corresponding to the configuration file : neo4j.conf
c. the browser at http://127.0.0.1:8000/myproject/ → Expecting url format: bolt://user:password@localhost:7687 got ...j@localhost:7687
resulting from different attempts in settings.py in the field NEOMODEL_NEO4J_BOLT_URL = ...
I have read a lot of posts about the topic but could not find any solution.