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.

Configure SSH access¶
To configure SSH access:
- Go to Configuration > Settings > SSH key.
- Enter your public key in the SSH Key field.
- 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>