Neo4j Desktop 1.3.8:使用 'Reset database password' 后 "Failed - not a valid password"
Neo4j Desktop 1.3.8 : "Failed - not a valid password" after using 'Reset database password'
我从桌面应用程序转到数据库>管理>管理。
在那里我填写了一个新密码(我尝试了几个)并按下 'apply'。重新启动数据库后,我得到以下提示:Local Graph password has been changed. Please enter Graph password:
。当我填写新密码时(我也尝试了默认密码,neo4j
)我得到这个错误... Failed - not a valid password.
我仍然可以 运行 使用 dbms.security.auth_enabled=false
的数据库,但我只是想弄清楚如何解决这个问题。我尝试了各种解决方案。如果有人可以帮助我正确设置它,我将不胜感激。
编辑说明:前几天一切正常。上次电脑重启后突然就没有了
我找到了解决方法。我刚刚通过 cypher-shell 使用了更改密码,所有内容都重新同步了。
我在 neo4j 论坛上问了这个问题(here) and got a response from wookiefrits 有以下说明:
- Disable authentication in your settings by setting:
bdms.security.auth_enabled=false
- Then all you have to do is to go to your Neo4j Browser and paste this into the shell:
ALTER USER neo4j SET PASSWORD 'mynewpass';
- set
bdms.security.auth_enabled
back to true
我从桌面应用程序转到数据库>管理>管理。
在那里我填写了一个新密码(我尝试了几个)并按下 'apply'。重新启动数据库后,我得到以下提示:Local Graph password has been changed. Please enter Graph password:
。当我填写新密码时(我也尝试了默认密码,neo4j
)我得到这个错误... Failed - not a valid password.
我仍然可以 运行 使用 dbms.security.auth_enabled=false
的数据库,但我只是想弄清楚如何解决这个问题。我尝试了各种解决方案。如果有人可以帮助我正确设置它,我将不胜感激。
编辑说明:前几天一切正常。上次电脑重启后突然就没有了
我找到了解决方法。我刚刚通过 cypher-shell 使用了更改密码,所有内容都重新同步了。
我在 neo4j 论坛上问了这个问题(here) and got a response from wookiefrits 有以下说明:
- Disable authentication in your settings by setting:
bdms.security.auth_enabled=false
- Then all you have to do is to go to your Neo4j Browser and paste this into the shell:
ALTER USER neo4j SET PASSWORD 'mynewpass';
- set
bdms.security.auth_enabled
back totrue