These instructions are for a base install of Community Edition for local development purposes.
(Official documentation is maintained here)
Dependencies: Homebrew
brew install arangodb
If you don't want Homebrew or otherwise prefer a binary, you can download it instead here.
/usr/local/sbin/arangod &
Open your browser and point to localhost:8529.
Run arangosh
in your shell. (If it's not in your PATH, you can find this in
/usr/local/bin/arangosh
).
The configuration file is located in /usr/local/etc/arangodb3/arangod.conf
.
(Official documentation is maintained here)
If you just want the deb file and no package management, download it here.
If you want to install for 14.04 instead of 16.04, change the version to 14.04 where you see 16.04 below.
wget https://www.arangodb.com/repositories/arangodb31/xUbuntu_16.04/Release.key
apt-key add - < Release.key
echo 'deb https://www.arangodb.com/repositories/arangodb31/xUbuntu_16.04/ /' | sudo tee /etc/apt/sources.list.d/arangodb.list
sudo apt install apt-transport-https
sudo apt update
sudo apt install arangodb3
sudo service arangodb3 start
Open your browser and point to localhost:8529.
Run arangosh
in your shell.
You can change ArangoDB to your heart's desire at /etc/arangodb3/arangod.conf
.
(Official documentation is maintained here)
Download here, follow the wizard.
Detailed compilation instructions for several platforms are available here.