Reputation: 2558
Problem: Change the user password of account neo4j
Attempted Flow:
curl -H 'Content-Type: application/json' -X POST \
-d '{"password": "newPwd"}' \
-u neo4j:"oldPwd" \
http://IP-ADDR:7474/user/neo4j/password
Observation:
Expected:
Update: NEO4J Team Replied in their chat
Neo4j 4.x no longer has this limitation and users/roles are auto propagated amongst members
Ref: https://community.neo4j.com/t/causal-cluster-how-to-change-user-password-across-all-instances/31449
Upvotes: 0
Views: 84
Reputation: 10727
In 3.5 after changing the password in one member, you need to copy the neo4j_directory/data/dbms/auth file manually to all other cluster members , there is no need to shutdown the members, the file will be re-read autimatically in few minutes after you copy. ( The issue is fixed in neo4j 4.X )
Upvotes: 1