How to SSH from One Linux EC2 to another

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ม.ค. 2025

ความคิดเห็น • 19

  • @UnusAWS
    @UnusAWS  ปีที่แล้ว

    This video shows how you can SSH from one EC2 to another. It shows where to save your private key file in the originating EC2. Whether you need to use the same name as the keypair name or you can use a different name for the private key? Also, what should be the permission setting for the private key file.

  • @Xxxxxx1-1
    @Xxxxxx1-1 8 หลายเดือนก่อน +1

    thank you so much its great that you included the error and its dolution as well.

  • @AdityaMoray-y9w
    @AdityaMoray-y9w 6 หลายเดือนก่อน +2

    Hi sir can't we directly ssh by changing settings in /etc/ssh/sshd_config and then use ssh-keygen and ssh-copy-id to login without password?

    • @UnusAWS
      @UnusAWS  6 หลายเดือนก่อน +1

      Thanks @AdityaMoray-y9w for bringing up this point. I will update this method as well in Video description.

    • @moforkevin
      @moforkevin 4 หลายเดือนก่อน

      mine says permission denied can you help ?

  • @vipulsingh2846
    @vipulsingh2846 6 หลายเดือนก่อน +1

    nice explanation really helpful.

    • @UnusAWS
      @UnusAWS  3 หลายเดือนก่อน

      Thank you for the feedback

  • @lavanyakartik4984
    @lavanyakartik4984 12 วันที่ผ่านมา

    i want connect passwrdless authentication ssh for two machine but give always error im learning for ansible

  • @shyamprasad1363
    @shyamprasad1363 7 หลายเดือนก่อน +1

    Awesome.. Thanks for sharing...

  • @AmishaSharma_1
    @AmishaSharma_1 4 หลายเดือนก่อน

    When I'm trying to ssh, i am getting a promp for entering password, why?

  • @ufuomaobodo8545
    @ufuomaobodo8545 4 หลายเดือนก่อน +1

    Thanks for this

  • @Ajinkyayeole3012
    @Ajinkyayeole3012 7 หลายเดือนก่อน

    Can we do this without CMD...

  • @swapnilpise6587
    @swapnilpise6587 4 หลายเดือนก่อน +1

    thank you

  • @Ajinkyayeole3012
    @Ajinkyayeole3012 7 หลายเดือนก่อน

    Hi unus i need help about this I using office laptop for practice of aws. As I am using office laptop I not able to use cmd of laptop. But i can access Awa console through browser. How can i ssh to my rhel server from ubuntu with using cmd???

    • @UnusAWS
      @UnusAWS  7 หลายเดือนก่อน

      You can try the below from cloudshell. You can access cloudshell from the AWS console mainpage. Issue below commands to create keypair and launch EC2
      # Create keypair
      aws ec2 create-key-pair --key-name MyKeyPair --query 'KeyMaterial' --output text > MyKeyPair.pem
      # It creates the keypair MyKeyPair.pem in your cloudshell home directory.
      # change permissions
      chmod 400 MyKeyPair.pem
      #Find a Ubuntu or RHEL image from EC2 launch page.
      ex: ami-0583d8c7a9c35822c
      # Create EC2 with the above AMI + above keypair.
      aws ec2 run-instances --image-id ami-0583d8c7a9c35822c --count 1 --instance-type t2.micro --key-name MyKeyPair --tag-specifications 'ResourceType=instance,Tags=[{Key=Name,Value=MyRHELInstance}]'
      # Now, you can SSH from cloudshell to your EC2. Use the connection string under EC2 console > Select instance > Click on Connect > SSH client > connection string under 'Example'

  • @prudvi6338
    @prudvi6338 9 หลายเดือนก่อน +1

    Thanks a lot sir

  • @shyamprasad795
    @shyamprasad795 10 หลายเดือนก่อน

    How to do this for windows machines?

    • @UnusAWS
      @UnusAWS  10 หลายเดือนก่อน

      You could refer to these docs which talks about this topic:
      docs.aws.amazon.com/AWSEC2/latest/UserGuide/openssh.html
      docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/connecting_to_windows_instance.html

  • @kidistamosa9084
    @kidistamosa9084 ปีที่แล้ว +1

    Thank you !