Arangodb 简明教程

ArangoDB - Command Line

在本章中,我们将讨论 Arangosh 如何作为 ArangoDB 的命令行工作。我们将从学习如何添加数据库用户开始。

In this chapter, we will discuss how Arangosh works as the Command Line for ArangoDB. We will start by learning how to add a Database user.

Note − 请记住,数字小键盘可能无法在 Arangosh 上工作。

Note − Remember numeric keypad might not work on Arangosh.

我们假设用户是“harry”,密码是“hpwdb”。

Let us assume that the user is “harry” and password is "hpwdb".

127.0.0.1:8529@_system> require("org/arangodb/users").save("harry", "hpwdb");

Output

{
   "user" : "harry",
   "active" : true,
   "extra" : {},
   "changePassword" : false,
   "code" : 201
}