AWS
How to Create EC2 Instance in AWS: Step by Step Tutorial
What is Amazon EC2 Instance? An EC2 instance is nothing but a virtual server in Amazon Web...
EC2 stands for Elastic Compute Cloud. It is the compute service offering from the IaaS (Infrastructure as a Service) area of AWS.
Once an EC2 instance is provisioned, it is very handy to update/modify many of the instances configuration parameters using AWS Management Console.
Let's take a look at each of them.
Step 1) In this step, you will do
Open all the services and click on EC2 under Compute services. This will launch the dashboard of EC2.
Here is the EC2 dashboard. Here you will get all the information in gist about the AWS EC2 resources running.
Step 2) On the top right corner of the EC2 dashboard, choose the AWS Region in which you want to provision the EC2 server.
Here we are selecting N. Virginia. AWS provides 10 Regions all over the globe.
Step 3)
Once your desired Region is selected, come back to the EC2 Dashboard.
Step 1) On the EC2 Dashboard, select the instance whose configuration parameters you want to modify and Click on the "Actions" button as shown below.
Step 2) As you click the button, the drop- down will show us all the areas where we can modify the instance characteristics.
Connect option below will show us ways in which we can connect to an EC2 instance.
Step 1) Click on option 'Connect.'
You may choose to connect with a standalone SSH client or a Java client. You will get a step-by-step procedure on how you can connect to your instance.
For this tutorial, we can see the connection methods for a Linux instance.
If you have a single EC2 instance running with a particular configuration, and you wish to quickly launch another instance in a one-click deployment, then 'Launch More Like This' option helps us do that.
Step 1) Click on 'Launch More Like This.'
You will be straightaway directed to the review instance details page of the launch instance wizard. Here we can verify all the details once more.
Step 2) On review instance details page Click on button 'Launch.'
Step 3) In this window,
Instance launch progress can be seen as below.
You can see below that a new instance is in a pending state before creation.
You can see that the new instance has the same tag as well.
You can change the instance state on the fly from the Management Console on a single click.
Step 1) In this step, Click on 'Instance State' under actions.
Here you can change a lot of instance settings like security groups, termination protection, etc.
Let's us see each one in detail.
Add/Edit Tags – You can add or edit the tags assigned to the instance. Tagging makes it easier for the business owner of the AWS account to keep a track of the instances especially if there are multiple environments.
AWS admins should assign each instance a tag based on the segregation e.g.: tagging all the instances in the production environment as 'Prod' or tagging the instances belonging to a department with the department initials etc. Tagging is a very effective method to track the costing of the instances as well.
Let's see how to change tags
Step 1) In this step,
Step 2) A tag is just a key-value pair.
Step 3) Come back to the EC2 Dashboard and
Note that the new tag as "Department" with value as Cloud has appeared under Tags.
An EC2 instance can be attached to an Auto Scaling Group on the fly.
Step 1) In this step, we do following things
Step 2) In this step,
This action will attach your instance to an auto-scaling group in your environment.
You can change the instance-type of your instance if you desire higher configuration instance as per your application requirement. This can be done to vertically scale your instance and provide you with more compute/memory capacity.
Let's see how to do this.
You cannot change an instance type if it's a running server. You have to stop it before doing so.
Step 1) In this step,
Note that the instance state is now in "stopping" mode on the EC2 Dashboard. You change an instance type now.
Step 2) In this step,
A Change Instance Type pop-up will appear.
Step 3) You can select from a range of EC2 available instance types. For this tutorial, we are changing it to t2.nano just for the sake of demonstration.
Step 4) Select t2.nano and hit 'Apply'.
Notice on the EC2 Dashboard, your instance type has been changed to the said type automatically.
You can now start your instance and continue on the operations on that. There will be no change in other configuration parameters and also your existing installations on the server will remain intact.
An instance should always have termination protection enabled especially on production servers. This will ensure that your EC2 instance is not getting accidently terminated.
AWS will add an additional level of security in case you happen to accidently hit the instance terminate option.
Let's see how to enable termination protection.
Step 1) In this step,
Step 2) Notice that the current setting on our instance is disabled. Click on "Yes,Enable".
This has enabled Termination protection on our instance. We'll check to see if our instance gets deleted when we hit Terminate.
Step 3) In this step,
AWS will immediately notify you that the EC2 instance has "termination protection enabled" and you will not be able to delete it. The 'Terminate' button below is disabled.
When you launch a new EC2 instance, you have the option to pass user data to an instance to run tasks at boot time automatically e.g. common configuration tasks, init scripts, etc.
You can pass the user data in the form of shell scripts or cloud-init directives. This can be either plain text, as a file or as base64 encoded text for API calls.
Here we will see how we can edit these scripts.
You will have to stop the instance first, you will not be able to edit the instance userdata if it's running. On a stopped instance, perform below steps.
Step 1) In this step, do the following things
Here for the purpose of demonstration, we have a shell script which installs LAMP stack on the server.
Step 2) In this step,
If ever you have accidently shutdown the instance via the OS console, you don't want AWS EC2 to actually terminate the instance.
For that, we can set up the shutdown behavior as 'Stop' instead of 'Terminate'. We can also do vice versa if the application requirement is as such.
Let's see how to achieve this.
Step 1) In this step,
Step 2) In this step, click on 'Stop' and then hit apply. The setting will be applied to the instance accordingly.
Step 3) Now when "stop" shutdown is initiated in the instance console via putty, it will not get terminated. It will simply shutdown normally.
You can see the system log for any EC2 instance for troubleshooting purposes etc.
Step 1) In this step,
You can see a separate window depicting the instance log details. Here we can see a snap of log when the instance was restarted.
You can create an AMI of your EC2 instance for backup.
Step 1) In this step,
An image creation wizard will open.
Step 2) In this step,
AWS will receive your create image request and will send a notification immediately.
You can check the status of the request on the EC2 dashboard as 'pending' just like what is shown below.
After a while the status is "available" and you will have your AMI ready as a backup.
You can also de-register it from the dashboard once the backup is old.
You can change the SG (Security Group) of an instance anytime. If you have another security group with different firewall rules, you can easily do so using the console.
Let's see how.
Step 1) In this step,
Step 2) In the change security groups wizard, it will show the already existing SG on the instance along with a list of all the security groups in the region.
Step 3) In this step,
Step 4) On the EC2 Dashboard, you can see that the SG of the instance has been changed. The instance will now send/receive traffic based on the new SG settings.
You can also add multiple security groups.
A network interface is like another NIC card to an instance. It will have another set of IPs additional to the already existing primary Network Interface.
Step 1) In this step,
You will get an error prompt if you don't have a Network Interface already created.
Let's see how to create a Network Interface quickly.
Step 2) In this step,
Step 3) In this step,
Now you can come back to the EC2 Dashboard and check that your network interface is getting created.
Now come back on Step 2) and go ahead with selecting your available interface which we just created and attach it to the instance.
Now as you can see the network interface which we just created is enlisted below automatically.
Your network interface will be attached to the instance immediately.
We can come back to the EC2 Dashboard and check our instance now. Note that the instance has 2 private IPs belonging to 2 network interfaces.
An Elastic IP is a static Public IP.
You can dissociate an EIP directly from the instance dashboard.
Step 1) In this step
Step 2) Click on the button of dissociate, once we have verified the instance id and the EIP.
Check below that the instance dashboard now shows the EIP field blank.
The Source/Destination Check attribute controls whether source/destination checking is enabled on the instance. Disabling this attribute enables an instance to handle network traffic that isn't specifically destined for the instance. For example, instances running services such as network address translation, routing, or a firewall should set this value to disabled.
Step 1) In this step,
Step 2) Click on 'Disable'. If it is disabled already, you can enable it in this step.
You can assign multiple private IP addresses to a single instance if that is your application architecture's design. The maximum no of IPs you can assign of course depends on the EC2 instance type.
Step 1) In this step,
You will be redirected to a new window to assign a secondary IP address to your instance.
Step 2) In this step,
Note that an IP has been automatically assigned here.
Also, come back to the EC2 dashboard and notice the 2 private IPs assigned. These are 2 IPs on a single network interface.
If your instance is provisioned in EC2 – Classic, which is a deployment mode in AWS where resources are provisioned out of a VPC; then you can link your instance to a VPC environment as shown below.
The options below are disabled for us as our instance is already in a VPC.
AWS will by default have basic CloudWatch monitoring enabled on all its resources. However, if our instances are production instances, we may wish to enable detailed monitoring on them with additional costs of course.
Step 1) In this step,
You can also add/edit alarms to alert you for attributes in your CloudWatch monitoring metrics.
Summary
Thus, we saw in this tutorial, how to enable/modify various attributes in AWS for the instance configuration from the Management Console after it is launched.
AWS provides many more configuration options via CLI/API.
AWS Certified Solutions Architect - Associate 2018
What is Amazon EC2 Instance? An EC2 instance is nothing but a virtual server in Amazon Web...
What is AWS? Amazon Web Services (AWS) is a platform that offers flexible, reliable, scalable,...
{loadposition top-ads-automation-testing-tools} AWS is Amazon's cloud computing platform that...
What is AWS? Amazon web service is a platform that offers flexible, reliable, scalable,...
Before AWS Lambda function, let's understand: What is Serverless? Serverless is a term that...
What is AWS certification? AWS Certification helps professionals to build credibility and...