使用Windows cmd和Cypher Shell对Neo4j进行身份验证



当我使用cmd连接到Cypher Shell时,我会键入以下内容:

bincypher-shell -u neo4j

之后,系统会立即提示我输入密码。我输入密码并连接到Cypher Shell。耶!

现在,如果我尝试使用cmd和以下命令连接到Cypher Shell:

bincypher-shell -u neo4j - p <password>

我得到了错误:

The client is unauthorized due to authentication failure

有人能解释一下为什么吗?

谢谢

使用密码的完整连接字符串shell的格式可以是:

bincypher-shell -a <connection-URI>://<username>:<password>@<host><:port>

bincypher-shell -a <connection_uri> -u <username> -p <password>

例如:
bincypher-shell -a neo4j://neo4juser:neo4jpassword@127.0.0.1:7687

bincypher-shell -a neo4j://127.0.0.1:7687 -u neo4juser -p neo4jpassword

相关内容

  • 没有找到相关文章

最新更新