Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 15, 2021 09:10 am GMT

Start an instance on AWS EC2 - Hands on

In this exercise we will start a basic ec2 server and host a small server on it.

  • Type AWS EC2 in the search console and go to the EC2 dashboard.
    Dashboard

  • This will land you on EC2 dashboard from where you can see how many EC2 instances are running your keys etc.
    Ec2 dashboard

  • Select Instances from the side bar it shows all EC2 instances you are running and click on launch instance.
    EC2 instances dashborad

  • This will take you to a list of available AWS instances there are four options

    • My AMI: My AMI has AMI instances created by you and saved, Right now we have nothing saved here so this will be empty
    • AWS Marketplace: In AWS you can buy AWS instance with pre configured software's so that you don't have to set themselves like Wordpress, SQL, Ghost etc some of them are available free tooSQlWordpress AMI
    • Community AMI: These are all the instances given by the community for freeCommunity AMI
    • Quick start: This is what we use these are minimal AWS instances which can be started very fast with basic OS. Select the one highlighted in the below imageQuick Start
  • After that select the instance type like how may CPU, RAM, Storage, bandwidth we want for the purpose of this tutorial we select t2.micro because its available in the free tier as evident by the the Free tier available badge

    Instance types

  • For the purpose of this tutorial we don't change anything in configure instance move to the bottom and in advances details paste the following script in it. These are the startup scripts which will run when we start our EC2 instance.

#!/bin/bash# Use this for your user data (script from top to bottom)# install httpd (Linux 2 version)yum update -yyum install -y httpdsystemctl start httpdsystemctl enable httpdecho "<h1>Hello World from $(hostname -f)</h1>" > /var/www/html/index.html

Configure instance

  • Now we configure storage all the default settings work just fine. In future we will have an additional series on storage so don't worry about it now.
    Ec2 Storage

  • We will add tags so that it is easier to identify and manage our instances like name, department, maintenance etc
    Ec2 tags

  • Configure Security group in here we define how our EC2 instance can be accessed. In this tutorial add a new rule select HTTP from the type dropdown it will automatically allow everything via HTTP protocol its good here bit e can limit who can access our instance via HTTP and its not generally a good practice to give access to everyone via HTTP.
    onfigure security group

  • Now to the final step we review if everything is alright. Just have a quick glace that all settings are done correctly.
    Review

  • Lets launch now but before launch AWS asks for a key which you download and use to access via SSH Download and keep the key safe as it only can be downloaded once. You can also select a previous key if you have a key generated already.
    Launch

  • Launch status page here you see a status of launched instance and some helpful resources to get you started. Click on view instances to go to the instances dahboard.
    Launch status

  • Now you can see your instance running. Select the instance you will see details at the bottom. On the right side of public IPv4 address there is open address button click on it.
    Create instance dashboard

  • For now the link won't work because the link has https remove https form the link and there will be a screen like below image. This http server was setup in our startup bash script above there we start a http apache server and return echo "<h1>Hello World from $(hostname -f)</h1>" > with hostname that is what is displayed
    Website page

  • Finally if you want to follow along with this series you are done. For others running an EC2 instance costs money so you can terminate the instance by selecting the instance and form the instance state dropdown select terminate instance.
    Terminate instance

In the next part of the series we will SSH into out instance and see our files and learn how to access remote PC.


Original Link: https://dev.to/this-is-learning/start-an-instance-on-aws-ec2-hands-on-2hb3

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To