I have created an EC2 instance on AWS. I want to connect to the instance using PuTTY, but it requires PPK file. I have PEM file which I want to covert into PPK using PuTTYgen.
How do I use PuTTYgen on Ubuntu to convert PEM file to PPK?
PEM (Privacy Enhanced Mail) is a base64 container format for encoding keys and certificates. . pem download from AWS when you created your key-pair. This is only a one time download and you cannot download it again. PPK(Putty Private Key) is a windows ssh client, it does not support .
With *nix version of PuTTYgen:
puttygen mykey.pem -o mykey.ppk
See PuTTYgen man page.
For Windows users: Note that Windows version of PuTTYgen does not support key conversions from command-line.
You can use WinSCP with the /keygen
command-line switch instead to convert the key, like:
winscp.com /keygen mykey.pem /output=mykey.ppk
For compatibility with PuTTYgen, WinSCP also supports its syntax:
winscp.com /keygen mykey.pem -o mykey.ppk
Do you need Putty to connect to your instance's command line? You mentioned you use Ubuntu, so you can use PEM key with plain ssh:
ssh -i mykey.pem user@hostname
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With