各种笔记
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

626 B

下载安装包下载地址

简单启动

类unix arangod &
win arangod.exe

安装后设置一下root密码

arango-secure-installation

创建新用户和新的数据库

arangosh> db._createDatabase("example");
arangosh> var users = require("@arangodb/users");
arangosh> users.save("root@example", "password");
arangosh> users.grantDatabase("root@example", "example");

现在,您可以使用root @ example用户连接到新数据库 。

shell> arangosh --server.username "root@example" --server.database example