Creating a first user
Upon database creation, Neo4j will create a user with a temporary password. The default user and password are neo4j/neo4j. When you first launch a Neo4j Browser, please enter the neo4j user and temporary neo4j password.
You'll be prompted to the next window where you'll need to change the temporary password. When changing the password, please make sure you choose a secure password and store it safely. If the password can no longer be retrieved or is lost, the user should be deleted and a new one created.
Managing users
Users can be created and managed using a set of Cypher administration commands that you can easily run from Neo4j Browser or your application. Below you'll find a set of commands for listing users, creating users and deleting users, but you can also find a full list of commands in this Neo4j doc.
List Users
cypher
SHOW USERS
Create User
cypher
CREATE USER charlie SET PASSWORD 'password'
Delete User
cypher
DROP USER charlie
Please ensure you're using the correct command depending on Neo4j version of your database.