Run Docker with data container¶
To run Docker with data container:
-
Create a persistent data container.
docker create --volume /srv \ --name pmm-data \ percona/pmm-server:2 /bin/true
Important
PMM Server expects the data volume to be
/srv
. Using any other value will result in data loss when upgrading.To check server and data container mount points:
docker inspect pmm-data | grep Destination && \ docker inspect pmm-server | grep Destination
-
Run the image.
docker run --detach --restart always \ --publish 443:443 \ --volumes-from pmm-data \ --name pmm-server \ percona/pmm-server:2
-
Change the password for the default
admin
user.- For PMM versions 2.27.0 and later:
docker exec -t pmm-server change-admin-password <new_password>
-
For PMM versions prior to 2.27.0:
docker exec -t pmm-server bash -c 'grafana-cli --homepath /usr/share/grafana --configOverrides cfg:default.paths.data=/srv/grafana admin reset-admin-password newpass'
-
Visit
https://localhost:443
to see the PMM user interface in a web browser. (If you are accessing the docker host remotely, replacelocalhost
with the IP or server name of the host.)
Get expert help¶
If you need assistance, you can find comprehensive and free database knowledge on our community forum or blog posts. For professional support and services, contact our Percona Database Experts.
Last update:
2024-02-19