Install Pro packages of Percona Server for MongoDB¶
This document provides guidelines how to install Percona Server for MongoDB Pro from Percona repositories and from binary tarballs. Learn more about Percona Server for MongoDB Pro.
If you already run Percona Server for MongoDB and wish to upgrade to Percona Server for MongoDB Pro, see the upgrade guide.
Get the access token to the Pro repository¶
As a Percona Customer, you have the access to the ServiceNow portal. To request the access token, do the following:
- In ServiceNow, click My Account and select Entitlements.
- Select your entitlement.
-
If you are entitled for Pro builds, you will see the Token Management widget. Click the Get Percona Builds Token button.
If you don’t see the widget, contact Percona Support.
-
Click Request Token button in the Request a Percona Pro Builds Token dialog window.
- A token will be generated for you. You will also see the Customer ID. Copy both the Customer ID and the token as you will use them to configure the Pro repository and install the software.
Install from Percona repository¶
-
Install
percona-release
repository management tool. Fetchpercona-release
packages from Percona web:$ wget https://repo.percona.com/apt/percona-release_latest.$(lsb_release -sc)_all.deb
-
Install the downloaded package with dpkg:
$ sudo dpkg -i percona-release_latest.$(lsb_release -sc)_all.deb
-
Update the local cache
$ sudo apt update
-
Enable the repository. Choose your preferable method:
Run the following command and pass your credentials to the Pro repository:
$ sudo percona-release enable psmdb-60-pro release --user_name=<Your Customer ID> --repo_token=<Your PRO repository token>
-
Create the
/root/.percona-private-repos.config
configuration file with the following content:/root/.percona-private-repos.config[psmdb-60-pro] USER_NAME=<Your Customer ID> REPO_TOKEN=<Your PRO repository token>
-
Enable the repository
$ sudo percona-release enable psmdb-60-pro release
-
-
Install Percona Server for MongoDB Pro packages:
$ sudo apt install -y percona-server-mongodb-pro
-
Start the server
$ sudo systemctl start mongod
-
Install
percona-release
using the following command:$ sudo yum install https://repo.percona.com/yum/percona-release-latest.noarch.rpm
-
Enable the repository. Choose your preferable method:
Run the following command and pass your credentials to the Pro repository:
$ sudo percona-release enable psmdb-60-pro release --user_name=<Your Customer ID> --repo_token=<Your PRO repository token>
-
Create the
/root/.percona-private-repos.config
configuration file with the following content:/root/.percona-private-repos.config[psmdb-60-pro] USER_NAME=<Your Customer ID> REPO_TOKEN=<Your PRO repository token>
-
Enable the repository
$ sudo percona-release enable psmdb-60-pro release
-
-
Install Percona Server for MongoDB Pro packages:
$ sudo yum install -y percona-server-mongodb-pro
-
Start the server
$ sudo systemctl start mongod
Install from binary tarballs¶
Binary tarballs are available for the following operating systems:
Starting with version 6.0.13-10:
- Ubuntu 22.04 (Jammy Jellyfish)
- Red Hat Enterprise Linux 9
Starting with 6.0.14-11:
- Red Hat Enterprise Linux 8
Preconditions¶
The following packages are required for the installation.
-
libcurl4
-
libsasl2-modules
-
libsasl2-modules-gssapi-mit
-
libcurl
-
cyrus-sasl-gssapi
-
cyrus-sasl-plain
Procedure¶
The steps below describe the installation on Ubuntu 22.04.
-
Download the tarballs from the pro repository
2. Extract the tarballs$ wget https://repo.percona.com/private/ID-TOKEN/psmdb-60-pro/tarballs/percona-server-mongodb-6.0.18-15/percona-server-mongodb-pro-6.0.18-15-x86_64.jammy.tar.gz \ $ wget https://repo.percona.com/private/ID-TOKEN/psmdb-60-pro/tarballs/percona-mongodb-mongosh-2.3.2/percona-mongodb-mongosh-2.3.2-x86_64.tar.gz
$ tar -xf percona-server-mongodb-6.0.18-15-x86_64.jammy.tar.gz $ tar -xf percona-mongodb-mongosh-2.3.2-x86_64.tar.gz
-
Add the location of the binaries to the
PATH
variable:$ export PATH=~/percona-server-mongodb-pro-6.0.18-15-x86_64.jammy/bin/:~/percona-mongodb-mongosh-2.3.2/bin/:$PATH
-
Create the default data directory:
$ mkdir -p /data/db
-
Make sure that you have read and write permissions for the data directory and run
mongod
.
Next steps¶
Get expert help¶
If you need assistance, visit the community forum for comprehensive and free database knowledge, or contact our Percona Database Experts for professional support and services.