How to Launch and Connect to an EC2 Instance on AWS – A Step-by-Step Beginner’s Guide

If you’re just getting started with AWS and want to learn how to launch a virtual server using Amazon EC2 (Elastic Compute Cloud), you’re in the right place! This guide walks you through launching a basic EC2 instance, connecting to it from Linux/Mac, Windows, or the AWS Instant Terminal, and updating your server.

Step 1: Navigate to the EC2 Section in AWS Console

  1. Head over to the AWS Management Console and log into your account.
  2. In the search bar at the top of the dashboard, type EC2.
  3. Click on the EC2 option that appears in the dropdown list.

✅ EC2 stands for Elastic Compute Cloud – it’s a core AWS service that lets you launch scalable virtual servers in the cloud.

Step 2: Create a New EC2 Instance

Once you’re on the EC2 Dashboard:

  1. Click on the “Instances” option (look for the “Instances” bubble).
  2. Click on the orange “Launch Instances” button to start creating your virtual server.

🛠️ Instance Configuration:

  • Name and Tags: Type in labserver as the instance name.
  • Amazon Machine Image (AMI): Leave the default as Amazon Linux (a secure, stable, and lightweight OS).
  • Instance Type: Keep it as t2.micro (free-tier eligible).

Step 3: Create a Key Pair for Secure Access

Key pairs are used to securely connect to your EC2 instance.

  1. Click on “Create new key pair”.
  2. Key pair name: Enter labec2.
  3. Key pair type: Keep it as RSA.
  4. Private key file format:
    • For Linux, macOS, or Instant Terminal users: Choose .pem
    • For Windows users (using PuTTY): Choose .ppk
  5. Click “Create key pair” – this will download the private key file to your computer.

⚠️ Store your key pair file securely. You won’t be able to download it again from AWS later.

Step 4: Network and Security Settings

Under Network settings:

  • Leave Network, Subnet, and Auto-assign public IP as default.

🔐 Firewall (Security Group):

  • Under “Allow SSH traffic from”, change the option:
    • From Anywhere (0.0.0.0/0) ➝ to My IP for security.
    • ⚠️ If you’re using AWS Instant Terminal, leave it as Anywhere to avoid connectivity issues.

Launch the EC2 Instance

  • Scroll down and click the orange “Launch instance” button.
  • Once launched, you’ll see a success message.
  • Click “View all instances”, then select your new instance and click “Connect” to see instructions and retrieve your Public IPv4 address.

Step 6: Connect to Your EC2 Instance

💻 For Linux/Mac Users (Using Terminal):

  1. Open your terminal.
  2. cd into the directory where your key file was downloaded (e.g., cd Downloads)
  3. Change the file permission with: chmod 400 file_name.pem
  4. Connect using SSH: ssh -i file_name.pem ec2-user@<Public_IP_Address>
  5. If prompted, type yes and press Enter.

For Instant Terminal Users:

  1. Locate your file_name.pem file.
  2. Open it with any text editor (e.g., Notepad, Sublime).
  3. Copy all the contents including: -----BEGIN RSA PRIVATE KEY----- ... -----END RSA PRIVATE KEY-----
  4. Open the Instant Terminal in the AWS Console.
  5. Type: add_key
  6. Press i (insert mode), paste the private key, then press: rubyCopyEdit:wq to save and exit.
  7. SSH into the instance using: ssh ec2-user@<Public_IP_Address>
  8. Confirm the connection with yes, then press Enter.

For Windows Users (Using PuTTY):

  1. Open PuTTY.
  2. In the Host Name field, paste your instance’s Public IPv4 address.
  3. On the left panel, go to: Connection > SSH > Auth
  4. Click Browse and select the .ppk file you downloaded (file_name.ppk).
  5. Click Open to initiate the SSH session.
  6. Accept the prompt to trust the server key, and you’ll be connected.

Required Things to Launch an EC2 Instance

Required ConfigurationDescription
AWS AccountYou must have an AWS account with access to the EC2 service.
Region SelectionChoose the AWS region closest to your users or needs.
Amazon Machine Image (AMI)Select the OS image for the instance (e.g., Amazon Linux, Ubuntu, Windows).
Instance TypeSelect instance size (e.g., t2.micro for free-tier eligible users).
Key Pair (SSH Key)Required for connecting to the instance. Must create or select an existing one.
VPC & Subnet (Networking)Select a VPC (Virtual Private Cloud) and subnet where your instance will reside. Usually defaults are available.
Security Group (Firewall Rules)Define access rules (e.g., allow SSH on port 22 from your IP).
Instance Name (Tag)Optional but useful for identification (e.g., Name = labserver).
Storage (Root Volume)Default root storage is provided; can increase if needed (e.g., 8 GB gp2).
Launch PermissionsClick Launch Instance and select the key pair to confirm.

Optional but Recommended Configurations

FeatureDescription
Elastic IPAllocate a static public IP address to your instance.
IAM RoleAssign permissions for the instance to interact with other AWS services (like S3, CloudWatch).
User Data ScriptProvide a script to automate tasks (e.g., install software) on first boot.
Monitoring (CloudWatch)Enable detailed monitoring for enhanced metrics (costs extra).
Auto-RecoverySet up recovery actions on instance failure.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top