matthew - retroedge.tech on Nostr: SSH Tip: To get the rsa public key from a PEM private key file, use this: ssh-keygen ...
SSH Tip:
To get the rsa public key from a PEM private key file, use this:
ssh-keygen -y -f key.pem > public_key.pub
You can then submit that public key to cloud providers, such as Digital Ocean.
To login with that key once the public key has been installed:
ssh -i ~/path-to/key.pem root@ip-address
#ssh #cloud
To get the rsa public key from a PEM private key file, use this:
ssh-keygen -y -f key.pem > public_key.pub
You can then submit that public key to cloud providers, such as Digital Ocean.
To login with that key once the public key has been installed:
ssh -i ~/path-to/key.pem root@ip-address
#ssh #cloud