how to connect amazon aws ec2 with key pair – linux

7
How To Connect Amazon AWS EC2 with Key Pair – Linux Table of Contents Overview............................................................. 1 Applies To........................................................... 1 Pre-requisites....................................................... 1 Key Pair............................................................. 1 Key Name / Key Pair.................................................1 Instance – Public IP................................................2 Copy Key Pair.......................................................2 Modify Permissions..................................................2 Connect Instance – Public IP........................................3 Connect Instance – Instance.........................................3 i | Page

Upload: vcp-muthukrishna

Post on 14-Aug-2015

15 views

Category:

Documents


2 download

TRANSCRIPT

Page 1: How to connect amazon aws ec2 with key pair – linux

How To Connect Amazon AWS EC2 with Key Pair – Linux

Table of ContentsOverview.....................................................................................................................................................1

Applies To....................................................................................................................................................1

Pre-requisites..............................................................................................................................................1

Key Pair........................................................................................................................................................1

Key Name / Key Pair................................................................................................................................1

Instance – Public IP..................................................................................................................................2

Copy Key Pair...........................................................................................................................................2

Modify Permissions.................................................................................................................................2

Connect Instance – Public IP....................................................................................................................3

Connect Instance – Instance....................................................................................................................3

i | P a g e

Page 2: How to connect amazon aws ec2 with key pair – linux

How To Connect Amazon AWS EC2 with Key Pair – Linux

OverviewThe purpose of this guide is to assist the users to connect the Amazon AWS EC2 Instance(s). This guide demonstrate connecting from a Linux host.

Applies ToLinux Server (Instance)

Pre-requisites Key Pair associated with the EC2 Instance Download and copy PEM Key to the Linux Box, from where you would like to connect Open inbound connection rule for port “22” on the security group associated to the instance Public IP association

Key PairA key pair is an encrypted RSA Private Key that’s generated and associated to a new instance when you build it. You can choose existing key pair or create new one.

Note: When you create a new pair ensure that you download the copy of key pair, else you will not be able to login to the box.

Key Name / Key Pair

You can identify the key pair associated to each instance in the “Key Name”. It is the key pair filename that is associated when you create a new instance from the Amazon AWS Console.

1 | P a g e

Page 3: How to connect amazon aws ec2 with key pair – linux

How To Connect Amazon AWS EC2 with Key Pair – Linux

Instance – Public IP

Identify the public IP for the instance, you can find in the instance’s “Public IP” field.

Copy Key Pair

Copy the key pair to the host wherein you are trying to login.

Modify Permissions

Modify the permission for the key pair to “400”, run the below command.

chmod 400 effoneblr.pem

2 | P a g e

Page 4: How to connect amazon aws ec2 with key pair – linux

How To Connect Amazon AWS EC2 with Key Pair – Linux

Connect Instance – Public IP

Upon setting the permission of the key pair, connect to the instance with the public IP associated to the instance, invoke the below command

ssh -i "effoneblr.pem" [email protected]

Note: Public IP has to be associated to the instance to connect.

Connect Instance – Instance

3 | P a g e