在shell中调用arangoimp时出错

时间:2018-03-12 11:30:30

标签: arangodb arangoimp

当我尝试使用以下内容调用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)'

我不知道我做错了什么。

1 个答案:

答案 0 :(得分:1)

HTTP 401表示所选数据库的指定用户名和/或密码不正确。

您似乎正在使用具有用户root的数据库let vc = ThirdViewController() let navVC = UINavigationController(rootViewController: vc) if let parent = self.presentingViewController{ self.dismiss(animated: true){ parent.present(navVC, animated: true) } } 。如果您设置了密码,则需要通过选项_system指定密码或省略密码,并在ArangoShell提示时键入密码。 如果密码不正确,或者用户不存在,则arangod服务器将使用HTTP 401进行响应。