ArangoDB 在shell中调用arangoimp时出错

hk8txs48  于 2022-12-09  发布在  Go
关注(0)|答案(1)|浏览(135)

当我尝试使用以下代码调用arangoimp时:
Applications/ArangoDB3-CLI.app/Contents/Resources/arangoimp在我的终端中我得到以下错误:
2018-03-12T11:26:43Z [49366] ERROR Could not connect to endpoint 'tcp://127.0.0.1:8529', database: '_system', username: 'root' 2018-03-12T11:26:43Z [49366] FATAL got error from server: HTTP 401 (Unauthorized)'
我不知道我做错了什么。

az31mfrm

az31mfrm1#

HTTP 401表示所选数据库的指定用户名和/或密码不正确。
看起来您正在使用数据库_system和root用户。如果您设置了密码,则需要通过选项--server.password "your-password-goes-here"指定密码,或者忽略密码并在ArangoShell提示时键入密码。如果密码不正确,或者用户不存在,则arangod服务器将以HTTP 401响应。

相关问题