Posts

Showing posts from November, 2020

AWS Lambda Function to Start and Stop an EC2 Instance

Lambda falls under “Compute” service in AWS (Amazon Web Services). Using Lambda we can code without provisioning or managing servers. Lambda automatically runs our code without requiring us to provision or manage servers. We just need to write the code and upload it to the Lambda Function. Lambda executes the code only when needed. It grows automatically supporting from a few requests to thousands of requests. We are charged for every 100ms our code executes and the number of times it is triggered. We are charged only for the compute time our code consumes and not charged when the code is not being executed. Click here to read the complete version of this article written by me available on howtoforge .

How to setup Elastic Container Registry (ECR) for Docker on AWS

Amazon Elastic Container Registry (ECR) is a managed container registry service of AWS. This service is found under “Compute” on AWS Console. This is used to store, manage, and deploy Docker Container Images. ECR is integrated with Amazon Elastic Container Service (ECS). With ECR, there is no upfront fees. We pay only for the amount of data we store in our repositories and data transferred to the Internet. Click here to read the complete version of this article written by me available on howtoforge .

How to create a Virtual Private Cloud (VPC) in AWS

VPC (Virtual Private Cloud) falls under the service "Network and Content Delivery" in AWS (Amazon Web Services). VPC provides us with a virtual private isolated cloud. In short, we can have a private network that is isolated from all other networks on AWS. We have complete control over all the components that are responsible for building the network. We can have IPs, CIDR (Classless Inter-Domain Routing) blocks of our choice. We can define our own rules in routing tables. We can have a public network, a private network or a private network with access to the Internet. We can have security groups that help restrict the network and access to it. We can have peering between two isolated networks, from site to site VPN. Click here to read the complete version of this article written by me available on howtoforge .

What is IAM and How does IAM Work in AWS

IAM (Identity and Access Management) falls under “Security, Identity, & Compliance” service in AWS (Amazon Web Services). It lets us manage access to AWS services and resources securely. Using IAM we can create and manage AWS users, groups, roles and use permissions to allow or deny their access to AWS resources. IAM comes with "no additional charge" and we are charged only for other AWS services used by us. Click here to read the complete version of this article written by me available on howtoforge .

How to create an alarm for an EC2 instance with Cloudwatch

Cloudwatch falls under “Management & Governance” service in AWS (Amazon Web Services). Cloudwatch is a monitoring and management service which can be used to monitor services on AWS and manage them when a particular condition meets. Cloudwatch can be used to collect performance and operational data (CPU, RAM, Network_IN, Network_Out, etc) of the services available on AWS . Click here to read the complete version of this article written by me available on howtoforge .

How to create an Ubuntu EC2 Instance on AWS

Image
EC2 (Elastic Compute Cloud ) is part of the “Compute” service in AWS (Amazon Web Services). EC2 is nothing but a VM (Virtual Machine) in AWS. It is a web service of AWS using which a user can create a VM (EC2 Instance) whenever needed as per the requirement. The user can rent a VM and pay as per the usage. To understand more about AWS billing, click here . In this article, we will see how to create a new Ubuntu EC2 Instance on AWS from the AWS Console. Click here to read the complete version of this article written by me available on howtoforge . EC2 Dashboard

How to create an S3 Bucket (Object Storage) on Amazon AWS

S3 (Simple Storage Service) falls under “Storage” service in AWS (Amazon Web Services). In simple words, S3 is nothing but an object storage where you can store your objects (Files, Videos, Images, Documents, and any-type-of-file). We can restrict the access to files as per our requirements. We can keep multiple versions of the file if needed. We can have access to our data whenever and wherever needed having access to the Internet at the lowest possible cost. Click here to read the complete version of this article written by me available on howtoforge .