Neo4j Server 2.2社区 - 当前密码未知时如何更改登录密码

时间:2015-04-09 14:37:54

标签: neo4j

Windows 7(SP1)Neo4j Community Edition 2.2

我正在使用前端屏幕在localhost / 7474上启动服务器。日志文件表示服务器已成功启动。我无法记住我的密码,我读过的有关更改密码的所有文档都假设您知道当前的密码。我查看了dbf / auth文件,它只包含一个哈希。有些人可以如何更改登录密码? THX。

5 个答案:

答案 0 :(得分:8)

您是否尝试过停止Neo4j,删除文件并重新启动Neo4j。这应该会提示您输入新密码。

答案 1 :(得分:7)

我在版本3中遇到了同样的问题。终于能够让:server change-password让我输入默认密码,然后输入一个新密码。唷。

答案 2 :(得分:3)

在Neo4j中关闭basicAuth的其他解决方法如下:

进入neo4j/conf/neo4j-sever.properties文件并编辑以下行:

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

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

答案 3 :(得分:1)

对我来说,在停止neo4j之后,它也只是为了添加

  

password_change_required

在User \ Eigene Dokumente \ Neo4j \ default.graphdb \ dbms \ auth文件的散列末尾。 启动neo4j时,pass再次默认。

答案 4 :(得分:1)

在Ubuntu 16.04 LTS:

sudo vi /etc/neo4j/neo4j.conf

并取消注释dbms.security.auth_enabled=false行。

然后重启服务器:

sudo service neo4j stop
sudo service neo4j start