cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Database access requires an authenticated connection

HI
I have installed community edition of neo4j , new to this tool
When I try to launch , Bolt asks for authentication credentials

What should be the password for bolt://127.0.0.1:7687 , user - neo4j ?

http://127.0.0.1:7474/browser/

Error -
Database access not available. Please use :server connect to establish connection. There's a graph waiting for you.

Not sure what did I miss

1 ACCEPTED SOLUTION

Hi Dana
Many thanks
I was able to login after uncomenting below line & password update..

dbms.connector.bolt.listen_address=:7687

View solution in original post

2 REPLIES 2

the default username and password are neo4j and neo4j respectively.
After authenticating one can change the password by running

call dbms.security.changePassword('<new password>');

for example

call dbms.security.changePassword('football');

Hi Dana
Many thanks
I was able to login after uncomenting below line & password update..

dbms.connector.bolt.listen_address=:7687