<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Oluwatunmise</title>
    <description>The latest articles on DEV Community by Oluwatunmise (@oluwwatunmise).</description>
    <link>https://dev.to/oluwwatunmise</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3369980%2Fc6fae056-5a9f-44fd-8329-408070b6f3d9.jpg</url>
      <title>DEV Community: Oluwatunmise</title>
      <link>https://dev.to/oluwwatunmise</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/oluwwatunmise"/>
    <language>en</language>
    <item>
      <title>How I Attached and Mounted an EBS Volume to My Ubuntu EC2 Instance: A Step-by-Step Guide</title>
      <dc:creator>Oluwatunmise</dc:creator>
      <pubDate>Fri, 29 Aug 2025 20:28:23 +0000</pubDate>
      <link>https://dev.to/oluwwatunmise/how-i-attached-and-mounted-an-ebs-volume-to-my-ubuntu-ec2-instance-a-step-by-step-guide-1b87</link>
      <guid>https://dev.to/oluwwatunmise/how-i-attached-and-mounted-an-ebs-volume-to-my-ubuntu-ec2-instance-a-step-by-step-guide-1b87</guid>
      <description>&lt;p&gt;Amazon Elastic Block Store (EBS) is a vital AWS service that provides persistent block storage volumes for EC2 instances. It enables you to store data that persists beyond the life of a single EC2 instance. In this guide, I'll walk you through how I created, attached, formatted, mounted, and configured a new EBS volume on my Ubuntu EC2 instance.&lt;/p&gt;




&lt;h2&gt;
  
  
  📂 Step 1: Create a New EBS Volume
&lt;/h2&gt;

&lt;p&gt;From the AWS Console:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I navigated to &lt;strong&gt;EC2 &amp;gt; Elastic Block Store &amp;gt; Volumes&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Clicked &lt;strong&gt;Create Volume&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Chose &lt;strong&gt;gp3&lt;/strong&gt; volume type, 5 GiB size, and selected the &lt;strong&gt;same Availability Zone&lt;/strong&gt; as my EC2 instance (e.g., &lt;code&gt;eu-west-1a&lt;/code&gt;).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fici25axzrsrg3fyoc5ne.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fici25axzrsrg3fyoc5ne.png" alt="Create a New EBS Volume" width="800" height="435"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;`&lt;/p&gt;

&lt;p&gt;Why it matters: EBS volumes must be in the same AZ as your instance to be attachable.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔗 Step 2: Attach the Volume to EC2 Instance
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;After creating the volume, I selected it and chose &lt;strong&gt;Actions &amp;gt; Attach volume&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;I selected my EC2 instance and set the &lt;strong&gt;device name as /dev/xvdf&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffzsym6g3a8m2g3e3dkkt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffzsym6g3a8m2g3e3dkkt.png" alt="EBS Volume created" width="800" height="435"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🚀 Step 3: Connect to EC2 via SSH &amp;amp; Verify Volume
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;I connected to my EC2 instance using SSH&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Why it matters: This confirms the volume is visible to the OS.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔢 Step 4: Format the Volume with ext4
&lt;/h2&gt;

&lt;p&gt;Why: A filesystem must be applied before mounting. &lt;code&gt;ext4&lt;/code&gt; is a common Linux filesystem.&lt;/p&gt;




&lt;h2&gt;
  
  
  🗂️ Step 5: Create Mount Point &amp;amp; Mount the Volume
&lt;/h2&gt;

&lt;p&gt;The mount point is simply a directory on your Linux system (like /data) where the EBS volume’s storage will appear. Once mounted, any files you create or copy into /data are stored on that EBS volume, not on your instance’s root disk.&lt;/p&gt;




&lt;h2&gt;
  
  
  ✏️ Step 6: Write a Test File
&lt;/h2&gt;

&lt;p&gt;This proves the volume is writable and mounted correctly.&lt;/p&gt;




&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flfos9u3xmzvy8ixa1kvg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flfos9u3xmzvy8ixa1kvg.png" alt="CLI" width="800" height="353"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  ⏹️ Step 7: Stop and Start EC2, Then Re-Mount
&lt;/h2&gt;

&lt;p&gt;After stopping and starting the EC2 instance, I ran:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fszrkmcgrbnktdf57873x.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fszrkmcgrbnktdf57873x.png" alt="Stop and Start" width="800" height="435"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1cafsn5x0z25ng8dndwc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1cafsn5x0z25ng8dndwc.png" alt="Re-Mount" width="800" height="456"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🌟 Conclusion: What I Learned
&lt;/h2&gt;

&lt;p&gt;This exercise gave me a hands-on understanding of persistent storage in AWS. I learned how to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Provision and attach EBS volumes&lt;/li&gt;
&lt;li&gt;Format and mount them to an instance&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;And here’s an important note&lt;/strong&gt;: since your root storage is an EBS volume, your data will still exist even if you stop the instance. When you start it again, it picks up right where you left off. The only time it gets deleted is if you chose the option Delete on termination.&lt;/p&gt;

&lt;p&gt;Now I can confidently handle EBS in real-world scenarios.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If you're new to EBS or EC2, I hope this post demystifies the process. Feel free to ask questions or share your experience in the comments!&lt;/em&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>devops</category>
      <category>cloudcomputing</category>
    </item>
    <item>
      <title>AWS Made Simple: How to Launch Your First EC2 Instance (No Stress Guide)</title>
      <dc:creator>Oluwatunmise</dc:creator>
      <pubDate>Tue, 26 Aug 2025 12:50:14 +0000</pubDate>
      <link>https://dev.to/oluwwatunmise/aws-made-simple-how-to-launch-your-first-ec2-instance-no-stress-guide-a5j</link>
      <guid>https://dev.to/oluwwatunmise/aws-made-simple-how-to-launch-your-first-ec2-instance-no-stress-guide-a5j</guid>
      <description>&lt;p&gt;Spinning up your first EC2 instance can feel like trying to start a spaceship 🚀. But don’t worry, you don’t need to be an astronaut (or a DevOps wizard) to do it!&lt;/p&gt;

&lt;p&gt;✅&lt;strong&gt;Prerequisites&lt;/strong&gt;&lt;br&gt;
Before you begin, make sure you have:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;An AWS account&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Access to the AWS Management Console&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;An SSH key pair (or be ready to create one)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🖥 &lt;strong&gt;Step 1: Log in to the AWS Management Console&lt;/strong&gt;&lt;br&gt;
Go to the AWS Console and search for EC2 in the search bar.&lt;/p&gt;

&lt;p&gt;🖥 &lt;strong&gt;Step 2: Click on "Launch Instance"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;On the EC2 Dashboard, click the Launch instance button to begin the setup.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foiid3hr6c1fpve5gdy7h.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foiid3hr6c1fpve5gdy7h.png" alt="Launch Instance" width="800" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🖥 &lt;strong&gt;Step 3: Name Your Instance&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Give your instance a clear and descriptive name.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2ndih2hbgqhs26da5olj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2ndih2hbgqhs26da5olj.png" alt="Name your Instance" width="800" height="431"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🖥 &lt;strong&gt;Step 4: Choose an Amazon Machine Image (AMI)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Select an AMI (Amazon Machine Image). For beginners, the Amazon Ubuntu (Free tier eligible) is a safe choice.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxfbmvfk2gfzvdxt1bf1w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxfbmvfk2gfzvdxt1bf1w.png" alt="Choosing an AMI" width="800" height="433"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🖥 &lt;strong&gt;Step 5: Choose an Instance Type&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Pick the instance type. The t2.micro or t3.micro is free tier eligible and works well for testing.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F52d5phgqhryd7b29jec7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F52d5phgqhryd7b29jec7.png" alt="Selecting Instance Type" width="800" height="432"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🖥 &lt;strong&gt;Step 6: Configure Key Pair&lt;/strong&gt;&lt;br&gt;
Select an existing key pair or create a new one. This will be used later to connect via SSH.&lt;/p&gt;

&lt;p&gt;⚠️ Save the .pem file securely because you won’t be able to download it again.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq5uy6xrjoj5o8xmb9hoc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq5uy6xrjoj5o8xmb9hoc.png" alt="Configure Key Pair" width="800" height="433"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fohs3a92ani14mwwncm1q.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fohs3a92ani14mwwncm1q.png" alt="Configure Key Pair" width="800" height="432"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdnyic0n84vjwsgdxgg5d.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdnyic0n84vjwsgdxgg5d.png" alt="Configure Key Pair" width="800" height="432"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🖥 &lt;strong&gt;Step 7: Configure Network Settings&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In Network settings, make sure to allow SSH (port 22) so you can connect, and optionally HTTP and HTTPS if you are running a web app.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc8wzy9p2qwxmxxfvtah9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc8wzy9p2qwxmxxfvtah9.png" alt="Configure Network Settings" width="800" height="435"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🖥 &lt;strong&gt;Step 8: Storage Settings&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Leave the default storage, usually 8GB, or adjust if your use case requires more.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy9baod8rpu6cr381agny.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy9baod8rpu6cr381agny.png" alt="Storage Settings" width="800" height="435"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🖥 &lt;strong&gt;Step 9: Launch the Instance&lt;/strong&gt;&lt;br&gt;
Review your configuration and click Launch instance 🎉&lt;/p&gt;

&lt;p&gt;🖥 &lt;strong&gt;Step 10: Verify Instance is Running&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Go back to the EC2 Dashboard, and you should see your instance with the status Running.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frf43dhl578avtb7awsg7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frf43dhl578avtb7awsg7.png" alt="Running Instance" width="800" height="435"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🖥 &lt;strong&gt;Step 11: Connect to Your Instance via SSH&lt;/strong&gt;&lt;br&gt;
Step by Step&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffqfwyhs6dw4c4dr2h75j.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffqfwyhs6dw4c4dr2h75j.png" alt="SSH" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpawfra75mqthsc760wjv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpawfra75mqthsc760wjv.png" alt="SSH" width="800" height="460"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhny6e0ao07xvwe1o89ev.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhny6e0ao07xvwe1o89ev.png" alt="SSH" width="800" height="456"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Put in your created key pair&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu2keacsxsye8hd9pmgi8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu2keacsxsye8hd9pmgi8.png" alt="SSH" width="800" height="158"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbca4ojgfg55dl2x5p2dw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbca4ojgfg55dl2x5p2dw.png" alt="SSH" width="800" height="280"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🎯 Congratulations!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You’ve just launched and connected to your first EC2 instance! 🥳&lt;/p&gt;

&lt;p&gt;From here, you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Install a web server (&lt;em&gt;sudo yum install httpd&lt;/em&gt;)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Deploy an app&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Or just poke around and learn Linux in the cloud&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;💡 Tip&lt;/strong&gt;: EC2 is your gateway into AWS. Once you’re comfortable, check out Auto Scaling, Elastic Load Balancers, and EBS volumes.&lt;/p&gt;

</description>
      <category>devops</category>
      <category>aws</category>
      <category>cloud</category>
      <category>linux</category>
    </item>
  </channel>
</rss>
