1. Home
  2. Docs
  3. ClusterControl
  4. Installation
  5. Severalnines Repository

Severalnines Repository

Table of Contents

Severalnines provides YUM/APT repositories accessible at https://repo.severalnines.com. The automatic installation procedure (as described in Automatic Installation) automatically configures the ClusterControl node with the respective package repository.

YUM Repository

1. Manually import the Severalnines repository public key into your RPM keyring:

$ rpm --import http://repo.severalnines.com/severalnines-repos.asc

2 (a). You can download the repository definition from Severalnines download page:

$ wget http://www.severalnines.com/downloads/cmon/s9s-repo.repo -P /etc/yum.repos.d/

2 (b). Or, you can create the repository definition manually:

$ cat - > /etc/yum.repos.d/s9s-repo.repo << REPOEND
[s9s-repo]
name = Severalnines Release Repository
baseurl = http://repo.severalnines.com/rpm/os/x86_64
enabled = 1
gpgkey = http://repo.severalnines.com/severalnines-repos.asc
gpgcheck = 1
REPOEND

3. Look for ClusterControl packages:

$ yum search clustercontrol

APT Repository

1. Add Severalnines repository public key into your APT keyring:

$ apt-get -y install gnupg2
$ wget http://repo.severalnines.com/severalnines-repos.asc -O- | sudo apt-key add -

2 (a). You can download the repository definition from Severalnines download page:

$ sudo wget http://www.severalnines.com/downloads/cmon/s9s-repo.list -P /etc/apt/sources.list.d/

2 (b). Or, add the Severalnines APT source list manually:

$ echo 'deb [arch=amd64] http://repo.severalnines.com/deb ubuntu main' | sudo tee /etc/apt/sources.list.d/s9s-repo.list

3. Update package list:

$ sudo apt-get update

4. Look for ClusterControl packages:

$ sudo apt-cache search clustercontrol

 

Was this article helpful to you? Yes 2 No