diff --git a/cloud/training/101.md b/cloud/training/101.md index 7229298..16c603f 100644 --- a/cloud/training/101.md +++ b/cloud/training/101.md @@ -56,9 +56,11 @@ You will be dealing with different components: - **security group** and **security rules** are firewall rules applied to your server #### keypair -Generate your own SSH key: +Make sure you have a ssh key: ``` -ssh-keygen -t rsa -f ~/.ssh/id_rsa -N "" +$ ls ~/.ssh/id_rsa* +# If you do not have any key there: +# ssh-keygen -t rsa -f ~/.ssh/id_rsa -N "" # This will generate both private and public keys in ~/.ssh/ folder ```