Administration

How to configure ArangoDB, manage users accounts and backups, and what tools you can use to administrate deployments

Tools

Deployments of ArangoDB servers can be managed with the following tools:

  • Web interface: arangod serves a graphical web interface to be accessed with a browser via the server port. It provides basic and advanced functionality to interact with the server and its data.

  • ArangoShell: arangosh is a V8 shell to interact with any local or remote ArangoDB server through a JavaScript interface. It can be used to automate tasks. Some developers may prefer it over the web interface, especially for simple CRUD. It is not to be confused with general command lines like Bash or PowerShell.

  • RESTful API: arangod has an HTTP interface through which it can be fully managed. The official client tools including arangosh and the Web interface talk to this bare metal interface. It is also relevant for driver developers.

  • ArangoDB Starter: This deployment tool helps to start arangod instances, like for a Cluster or an Active Failover setup.

For a full list of tools, please refer to the Programs & Tools chapter.

Deployment Administration

Other Topics