Skip to content

Rate this page
Thanks for your feedback
Thank you! The feedback has been submitted.

Get free database assistance or contact our experts for personalized support.

SSH Key

When you run PMM Server as a virtual machine (AMI or OVF), you can upload your public SSH key to enable SSH access for direct management and troubleshooting.

PMM Settings SSH Key

Configure SSH access

To configure SSH access:

  1. Go to Configuration > Settings > SSH key.
  2. Enter your public key in the SSH Key field.
  3. Click Apply SSH key.

For more information on virtual machine deployments, see Virtual appliance.

Connect via SSH

Once your public key is configured, connect using the admin user:

ssh -i your-private-key admin@<pmm-server-ip>
ssh -i ~/keys/my-aws-key.pem admin@ec2-203-0-113-42.compute-1.amazonaws.com
ssh -i ~/.ssh/pmm_key admin@192.168.1.100

If your private key is in the default location (~/.ssh/id_rsa or ~/.ssh/id_ed25519), you can omit the -i flag:

ssh admin@<pmm-server-ip>