单节点安装,以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分布式部署

 

相关文章:

  • 2021-06-16
  • 2021-12-03
  • 2021-09-08
  • 2022-12-23
  • 2022-01-03
  • 2021-04-22
  • 2021-07-21
猜你喜欢
  • 2022-01-07
  • 2021-07-14
  • 2022-02-15
  • 2021-05-21
  • 2021-07-01
  • 2021-04-25
  • 2021-12-16
相关资源
相似解决方案