Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

neo4j v2.2.0 default password not working?

I recently upgraded from Neo4j v.2.1.7 to v.2.2.0

However, the default username/password (neo4j/neo4j) is not being recognized.

How is this resolved?

like image 708
Scott Campbell Avatar asked Apr 10 '15 13:04

Scott Campbell


People also ask

What is the default password neo4j?

The default password for a neo4j database is neo4j. The password for the example database is BloodHound. Click “Login”, and the GUI will attempt to authenticate to neo4j with the information you provided. You can optionally click “Save Password” to automatically log in next time with the same info.

How do I get my neo4j password?

Recover a lost password You can use a client such as Cypher Shell or the Neo4j Browser to connect to the system database and set a new password for the admin user. In a cluster deployment, you should complete the steps only on one of the Core servers. Complete the steps in Disable authentication as per your deployment.

How do I change my neo4j default password?

You can use the browser instead of the API. Just go to http://localhost:7474 (or whatever IP to which the web console is bound) and you will be prompted to change the password. Once authenticated, use the command :server change-password to change the password again.

What is the username in neo4j?

The username used on install as a service by default is neo4j , group is also neo4j .


1 Answers

Do you need authentication? If not you could turn it off by setting

dbms.security.auth_enabled=false

in neo4j-server.properties. This is a new config line added in Neo4j 2.2. If found in a fresh installation it would look like this:

# Require (or disable the requirement of) auth to access Neo4j
dbms.security.auth_enabled=true

When upgrading the line may not be present - if not it can be added in safely.

like image 99
ceej Avatar answered Oct 04 '22 18:10

ceej