From 69be55daf21ee0635006153e2cb6fd7abdc5296c Mon Sep 17 00:00:00 2001 From: arnaud Date: Tue, 2 Jan 2024 15:50:32 +0000 Subject: [PATCH] facultatif ssh key --- cloud/training/101.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 ```