Installing the Server
The main component of the PMM client-server architecture is a server that is responsible for aggregating and visualizing data from databases. The machine on which you install it becomes the monitoring host.
You can install the PMM server [2] as a Docker container or as a virtual appliance, or you can host it on the AWS cloud. To install it as a container, set up Docker on the monitoring host and enter the commands:
$ sudo docker create --volume /srv --name pmm-data percona/pmm-server:2 /bin/true
This command pulls the PMM2 image from the Percona repository and creates a persistent data container. Once the container has been created, you can fire it up with:
$ sudo docker run --detach --restart always --publish 80:80 --publish 443:443 --volumes-from pmm-data --name pmm-server percona/pmm-server:2
Now fire up a web browser and head to https://<IP address>:443 to bring up the PMM administration interface. Make sure you use the IP address or the hostname of the monitoring host on which you've installed the PMM server Docker image.
You can now log in with the default credentials, admin:admin . You'll be asked to reset the default password for the admin account as soon as you log in.
Installing Clients
Now that your monitoring server is all set up to receive and process data from the databases, it's time to install the PMM client on the database server.
The PMM client collects metrics about the database server, along with general system metrics, and packs it all to the PMM server. If you have multiple database servers, you'll have to install PMM clients on each of them. The PMM client is available as a 64-bit pre-compiled binary for both DEB- and RPM-based installations.
To begin, fetch and install the respective repository for your distribution and install the PMM client package. On DEB-based systems, the command would be:
$ wget https://repo.percona.com/apt/percona-re ... ic_all.deb
$ sudo dpkg -i percona-release_latest.generic_all.deb
$ sudo apt-get update
$ sudo apt install pmm2-client
Similarly, on RPM-based installations, the commands would be:
$ sudo yum install https://repo.percona.com/yum/percona-re ... noarch.rpm
$ sudo yum install pmm2-client
The PMM client package comprises a couple of command-line utilities, the most important being pmm admin, which is used to manage the client and hook up the database server to the PMM monitoring server:
$ sudo pmm-admin config --server-insecure-tls --server-url=https://admin:admin@<IP address>:443
Remember to use the appropriate values for the server URL option. You'll have to replace admin:admin with the username and password that you specified while logging into the administration interface of the monitoring server earlier. Also remember to replace the IP address with the address of the PMM monitoring server in your environment.
Once the server and the client are communicating, you'll have to configure how to send query metrics data from the database server to PMM. The process varies from one database server to another.
For instance, you can connect MySQL with:
$ pmm-admin add mysql --query-source=slowlog --<username>=root --password=<password>
Replace the username and password with the credentials of your MySQL database server. PMM can fetch query analytics with either slow log or the performance scheme, which isn't as data rich, although it contains all the critical data and is generally faster to parse. To use it, modify the above command to:
$ pmm-admin add mysql --query-source=perfschema --<username>=root --password=<password>