Install PMM Client with Percona repositories¶
Percona Monitoring and Management (PMM) Client can be installed using standard Linux package managers. You can choose between automated repository setup or manual package download options.
Supported architectures and platforms¶
PMM Client supports:
- Architectures: x86_64 (AMD64) and ARM64 (aarch64)
- Operating systems:
- Red Hat/CentOS/Oracle Linux 8 and 9
- Debian 11 (Bullseye) and 12 (Bookworm)
- Ubuntu 20.04 (Focal), 22.04 (Jammy), and 24.04 (Noble)
- Amazon Linux 2023
The package manager will automatically select the appropriate version for your system architecture.
Installation options¶
Choose one of these installation methods:
- Quick installation (recommended): Using the percona-release utility to configure repositories
- Manual package download: Direct download from Percona website
Quick installation using Percona repositories¶
This method configures the Percona repository on your system and installs PMM Client using your distribution’s package manager.
Tip
If you have used percona-release
before, disable and re-enable the repository:
percona-release disable all
percona-release enable pmm3-client
On Debian or Red Hat Linux, install percona-release
and use a Linux package manager (apt
/dnf
) to install PMM Client.
To install PMM Client:
- Configure repositories:
wget https://repo.percona.com/apt/percona-release_latest.generic_all.deb dpkg -i percona-release_latest.generic_all.deb
- Enable pmm3-client repository:
percona-release enable pmm3-client
-
Install the PMM Client package: !!! hint “Root permissions required” The installation commands below require root privileges. Use
sudo
if you’re not running as root.apt update apt install -y pmm-client
-
Verify the installation by checking the PMM Client version:
pmm-admin --version
- Register the node.
To install PMM Client:
- Configure repositories:
yum install -y https://repo.percona.com/yum/percona-release-latest.noarch.rpm
- Enable pmm3-client repository:
percona-release enable pmm3-client
- Install the PMM Client package:
yum install -y pmm-client
- Verify the installation by checking the PMM Client version:
pmm-admin --version
- Register the node.
Manual package download¶
If you prefer to download and install the packages manually without configuring repositories:
- Visit the PMM download page page.
- Select PMM 3 and choose specific version (usually the latest), under Select Platform, select the item matching your software platform and architecture (x86_64 or ARM64).
-
Click the link in the Package Download Option section and download the package file or copy the link and use
wget
to download it.dpkg -i *.deb
dnf localinstall *.rpm