Video Link - https://www.youtube.com/watch?v=ZHjOF4XBdiw
Video Link for putty connect error - https://www.youtube.com/watch?v=N26YeaqyXew
Install putty
Ref - https://numato.com/blog/how-to-install-putty-on-linux/
>> sudo apt-get update
>> sudo apt-get install -y putty
>> putty
Install PuttyGen
- Generate .ppk from .pem - https://aws.amazon.com/premiumsupport/knowledge-center/convert-pem-file-into-ppk/
>>> sudo apt-get install putty-toolsUnix or Linux - convert a .pem file to a .ppk file
On the instance shell, run the puttygen command to convert your .pem file to a .ppk file:
>>> sudo puttygen pemKey.pem -o ppkKey.ppk -O private Unix or Linux - convert a .ppk file to a .pem file
Run the puttygen command to convert a .ppk file into a .pem file:
>>> sudo puttygen ppkkey.ppk -O private-openssh -o pemkey.pem
0 Comments