Upgrading on Linux

By installing the new ArangoDB package the standalone instance is automaticallyupgraded. In addition to the ArangoDB daemon (arangod), also the ArangoDBStarter binary is updated. As a result, the procedure described in this _Section_is a first step to upgrade more complex deployments such as Clusteror Active Failover.

Upgrading via APT (Ubuntu)

First add the repository key to apt:

  1. curl -OL https://download.arangodb.com/arangodb33/xUbuntu_17.04/Release.key
  2. sudo apt-key add - < Release.key

Use apt-get to install arangodb:

  1. echo 'deb https://download.arangodb.com/arangodb33/xUbuntu_17.04/ /' | sudo tee /etc/apt/sources.list.d/arangodb.list
  2. sudo apt-get install apt-transport-https
  3. sudo apt-get update
  4. sudo apt-get install arangodb3=3.3.10

Note: The latest available version can be found in the download section.

Upgrading via DPKG (Ubuntu)

Download the corresponding file from the download section.

Install a specific package using dpkg:

  1. $ dpkg -i arangodb3-3.3.10-1_amd64.deb

Upgrading via YUM (CentOS)

Use yum to install ArangoDB:

  1. cd /etc/yum.repos.d/
  2. curl -OL https://download.arangodb.com/arangodb33/CentOS_7/arangodb.repo
  3. yum -y install arangodb3-3.3.10

Note: The latest available version can be found in the download section.

Upgrading via RPM (CentOS)

Download the corresponding file from the download section.

Install a specific package using rpm:

  1. $ rpm -i arangodb3-3.3.10-1.x86_64.rpm