ArangoDB

Installing ArangoDB



Linux

You can find binary packages for various Linux distributions here:

http://www.arangodb.org/repositories/

Using a Package Manager to install ArangoDB

CentoOS

Download and import GPG-PublicKey

 wget -O RPM-GPG-KEY-www.arangodb.org http://www.arangodb.org/repositories/PublicKey
 rpm --import RPM-GPG-KEY-www.arangodb.org

Add a repository file /etc/yum.repos.d/arangodb.repo

 [ArangoDB]
 name=ArangoDB Repository for CentOS
 failovermethod=priority
 baseurl=http://www.arangodb.org/repositories/CentOS-6.2
 enabled=1
 gpgcheck=1
 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-www.arangodb.org

Update the repository data:

 yum clean metadata
 yum update

Search for arangodb:

 yum search arangodb

Install arangodb:

 yum install arangodb

Debian, Linux-Mint, and Ubuntu

Download and import GPG-PublicKey

 wget -O RPM-GPG-KEY-www.arangodb.org http://www.arangodb.org/repositories/PublicKey
 apt-key add RPM-GPG-KEY-www.arangodb.org

Add the corresponding repository in file /etc/apt/sources.list:

 deb http://www.arangodb.org/repositories Debian-6.0 main

or

 deb http://www.arangodb.org/repositories LinuxMint-13 main

or

 deb http://www.arangodb.org/repositories Ubuntu-11.10 main

Update the repository data:

 aptitude update

Now you should be able to search for arangodb:

 aptitude search arangodb

In order to install arangodb:

 aptitude install arangodb

Gentoo

Please use the  portage provided by @mgiken.

OpenSuSE

Add the repository as follows:

 zypper addrepo -f -t YUM http://www.arangodb.org/repositories/openSUSE-12.1 ArangoDB

Update the repository data:

 zypper refresh

Search for arangodb:

 zypper search arangodb

Install arangodb:

 zypper install arangodb

Mac OS X

You can find the MacOSX packages here:

http://www.arangodb.org/repositories/MacOSX

Homebrew

If you are using homebrew, then you can install the ArangoDB using brew as follows:

 brew install arangodb

This will install the current stable version of ArangoDB within your Homebrew tree.

If you want to install the latest version use:

 brew install --HEAD arangodb