ArangoDB安装

单节点安装,以centos为例,配置yum源,具体可参考官网,然后执行

/etc/init.d/arangod start

启动服务。

基于redhat系列安装的ArangoDB在安装过程中生成root用户,且随机生成密码,如果要修改密码,则使用如下命令启动服务

arangod  --server.authentication false

这样可以不使用密码就进入数据库,然后进入Web接口修改密码

 USERS > root > Change Password

或者

arangosh --server.authentication false

登陆后,

require("@arangodb/users").replace("root", "my-changed-password");
exit
service arangodb3 restart // **VERY IMPORTANT STEP!!!**
//if you don't restart the server everyone can have access to your database

ArangoDB的集群安装,参考官网

使用Apache Mesos分布式部署

原文地址:https://www.cnblogs.com/sjjsxl/p/6653072.html