Friday, March 25, 2022
Monday, December 27, 2021
How to Setup EC2 Instance
What is Amazon EC2 Instance?
The instance will be charged per hour with different rates based on the type of instance chosen. AWS provides multiple instance types for the respective business needs of the user.
Thus, you can rent an instance based on your own CPU and memory requirements and use it as long as you want. You can terminate the instance when it’s no more used and save on costs. This is the most striking advantage of an on-demand instance- you can drastically save on your CAPEX.
Here is the full dedicated video-based upon "How to Create Amazon EC2 Instance"👇👇
Steps to Create Amazon EC2 Instance
1. In EC2 go to the Instances
2. And after that Click on Launch the Instance.
3. Choose the Machine Image (AMI) you want.
4. Choose the Instance Type you want.
5. Configure the Instance Details
6. Add Storage
7. Add tags
8. Configure Security Group
9. Review and Launch, Here you can see the Detail of your Instance.
10. If you are done with the Review, Now you can Simply launce the Instance
11. Then your instance will start the launching
Sunday, December 26, 2021
How to create Records in AWS Route53
what is Route53?
Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service. You can use Route 53 to perform three main functions in any combination: domain registration, DNS routing, and health checking.
Amazon Route 53 pricing and billing
For information about billing for AWS services, including how to view your bill and manage your account and payments, see the AWS Billing and Cost Management User Guide.
To create a record using the Route 53 console
- Sign in to the AWS Management Console and open the Route 53 console at https://console.aws.amazon.com/route53/
- Search for Route53 service
- choose Hosted zones.
- If you already have a hosted zone for your domain, skip to the next step. If you don't, select the "create a hosted zone" option and you can create it.
- Now If you are done with the Creating hosted zone, On the Hosted zones page, choose the name of the hosted zone that you want to create records in.
- Choose Create Record.
Wednesday, December 22, 2021
AWS Automation using Terraform
What is Terraform?
What is AWS Automation?
Here is a full tutorial video (Concept + Demo) based on "How we can do AWS Automation using Terraform"👇👇
Resource: aws_launch_configuration
Provides a resource to create a new launch configuration, used for autoscaling groups.
Example Usage
data "aws_ami" "ubuntu" {
most_recent = true
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
owners = ["099720109477"] # Canonical
}
resource "aws_launch_configuration" "as_conf" {
name = "web_config"
image_id = data.aws_ami.ubuntu.id
instance_type = "t2.micro"
}Using with AutoScaling Groups
Launch Configurations cannot be updated after creation with the Amazon Web Service API. In order to update a Launch Configuration, Terraform will destroy the existing resource and create a replacement. In order to effectively use a Launch Configuration resource with an AutoScaling Group resource, it's recommended to specify create_before_destroy in a lifecycle block. Either omit the Launch Configuration name attribute, or specify a partial name with name_prefix. Example:
data "aws_ami" "ubuntu" {
most_recent = true
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
owners = ["099720109477"] # Canonical
}
resource "aws_launch_configuration" "as_conf" {
name_prefix = "terraform-lc-example-"
image_id = data.aws_ami.ubuntu.id
instance_type = "t2.micro"
lifecycle {
create_before_destroy = true
}
}
resource "aws_autoscaling_group" "bar" {
name = "terraform-asg-example"
launch_configuration = aws_launch_configuration.as_conf.name
min_size = 1
max_size = 2
lifecycle {
create_before_destroy = true
}
}With this setup Terraform generates a unique name for your Launch Configuration and can then update the AutoScaling Group without conflict before destroying the previous Launch Configuration.
Sunday, December 19, 2021
What is Amazon Aurora and How it's Work?
What is Amazon Aurora?
Amazon Aurora is a MySQL and PostgreSQL-compatible relational database built for the cloud, that combines the performance and availability of traditional enterprise databases with the simplicity and cost-effectiveness of open source databases.
Amazon Aurora is up to five times faster than standard MySQL databases and three times faster than standard PostgreSQL databases. Amazon Aurora is fully managed by Amazon Relational Database Service (RDS), which automates time-consuming administration tasks like hardware provisioning, database setup, patching, and backups.
Amazon Aurora features a distributed, fault-tolerant, self-healing storage system that auto-scales up to 128TB per database instance. It delivers high performance and availability with up to 15 low-latency read replicas, point-in-time recovery, continuous backup to Amazon S3, and replication across three Availability Zones (AZs).
Here is a full tutorial video (Overview + Demo) based on AWS Aurora👇👇
Features of Amazon Aurora
- Scalability
- High throughput
- Instance monitoring and repair
- Encryption
- Easy to use
- Cost-effective
- Migration support
- Fully Managed
Amazon Aurora DB Cluster
Amazon Aurora DB cluster is a virtual database storage volume that spans multiple availability zones. Each Amazon Aurora Database Cluster is made up of two or more DB instances and a cluster volume that primarily manages the data for those DB instances. The following are the two types of DB instances that make up an Amazon Aurora Cluster:
- Primary DB instance: This type of DB instance supports read and write operations and performs all data modifications to the cluster volume. Each Aurora DB cluster has one primary DB instance.
- Aurora Replica: Unlike the primary DB instance, Aurora Replica only supports read operations. It is connected to the same storage volume as the primary DB instance. By locating Aurora Replicas in separate availability zones, high availability can be maintained.
Amazon Aurora Pricing
Amazon Aurora is paying as you go. It is comprised of 3 parts:
- Hosting. You can choose from 3 different types of hosting depending on your needs
- Storage and Operations. Storage is billed per gigabyte per month, and I/O is billed per million-request
- Data transferred
Thursday, December 16, 2021
AWS Relational Database - How to Create RDS Instance
Amazon Relational Database Service (Amazon RDS) makes it easy to set up, operate, and scale a relational database in the cloud. It provides cost-efficient and resizable capacity while automating time-consuming administration tasks such as hardware provisioning, database setup, patching and backups. It frees you to focus on your applications so you can give them the fast performance, high availability, security, and compatibility they need.
Here is the full Hands-on video on this topic👇👇
Steps to create an RDS instance
Following are the steps to create an RDS Instance:
1. Sign into AWS Management Console.
2. Open the RDS console.
3. In the upper-right corner, choose the region where you wish to create your instance.
4. In the navigation pane, click on ‘Databases’.
5. Click on ‘Create database’.
6. Make sure ‘Standard create’ is chosen, then click on MySQL (or the database in which you wish to create an RDS database instance).
7. In the ‘Templates’ tab, click on the ‘Dev/Test’ option.
8. In the ‘Setting’ tab, set the following values:
- DB instance identifier
- Master username
- Auto Generate a password
- Master password
- Confirm password
9. In the ‘DB instance size’ option, give a value for the following variables:
- DB instance performance types
- DB instance class
10. In the ‘Storage’ and ‘Availability & durability’ section, leave the default values as is.
11. In the ‘Connectivity’ section, click on the ‘Additional connectivity configuration’ and set the below values in it:
- Virtual Private Cloud (VPC)
- Subnet group
- Publicly accessible- No
- VPC security groups
- Availability zone- No preference
- Database port- 3306
The same is displayed in the below screenshot:
12. Click on the ‘Additional configuration tab, and provide a name for the ‘Initial database name’ variable. The default settings for other options need to be kept the same.
13. Now click on ‘Create database’.
14. It takes a few minutes for the instance to get created. It can be seen in the ‘Databases’ list as ‘Creating’.
15. Once it is created, it shows as ‘Available’.
16. The ‘Endpoint’ and ‘Port’ of the database instance can be viewed in the ‘Connectivity & security’ section.
Note: Make sure that your database instance is secure, by verifying that sources outside of the VPC can’t connect to the RDS database instance.
Wednesday, December 15, 2021
What is the difference between Amazon RDS Read Replicas vs Multi AZ
What is Relational Database Service (RDS)
Amazon Relational Database Service (Amazon RDS) makes it easy to set up, operate, and scale a relational database in the cloud. It provides cost-efficient and resizable capacity while automating time-consuming administration tasks such as hardware provisioning, database setup, patching and backups. It frees you to focus on your applications so you can give them the fast performance, high availability, security, and compatibility they need.
Here is the full dedicated video on this topic👇👇
Tuesday, December 14, 2021
What is AWS RDS (Relational Database Services)
What is AWS?
What is Amazon RDS?
Here is a fully dedicated video on AWS RDS (Relational Database Services)
Amazon RDS facilitates the deployment and maintenance of relational databases in the cloud. A cloud administrator uses Amazon RDS to set up, operate, manage and scale a relational instance of a cloud database. Amazon RDS is not itself a database; it is a service used to manage relational databases.
What are the benefits of AWS RDS?
- Ease of use. Admins don't need to learn specific database management tools. They also can manage multiple database instances using the management console. RDS is compatible with database engines that users may already be familiar with, such as MySQL and Oracle And it automates manual backup and recovery processes.
- Cost-effectiveness. According to AWS, customers only pay for what they use. Also, the time spent maintaining instances is reduced, because maintenance tasks, such as backups and patching, are automated.
- The use of read replicas routes read-heavy traffic away from the main database instance, reducing the workload on that one instance.
- RDS splits up compute and storage so admins can scale them independently.
Saturday, December 11, 2021
AWS Container Services
What is AWS?
Amazon Elastic Container Service (ECS)
Here is a fully dedicated video on AWS Interview Question and Answers
Amazon Elastic Kubernetes Service
Amazon EKS runs the Kubernetes management infrastructure for you across multiple AWS availability zones to eliminate a single point of failure. Amazon EKS is certified Kubernetes conformant so you can use existing tooling and plugins from partners and the Kubernetes community. Applications running on any standard Kubernetes environment are fully compatible and can be easily migrated to Amazon EKS.
Amazon Elastic Container Registry
Top ChatGPT Prompts for DevOps Engineers
As a DevOps engineer, your role involves juggling complex tasks such as automation, infrastructure management, CI/CD pipelines, and troubl...
-
sudo apt update sudo apt install ubuntu-desktop sudo apt install tightvncserver sudo apt install gnome-panel gnome-settings-daemon metac...
-
In today’s cloud-native world, load balancers play a pivotal role in ensuring high availability and performance for applications. Whether yo...
-
As a DevOps engineer, your role involves juggling complex tasks such as automation, infrastructure management, CI/CD pipelines, and troubl...











