SlideShare a Scribd company logo
1 of 27
Intro
AutoScaling
2
▪ AWS Auto Scaling monitors your applications and automatically adjusts
capacity to maintain steady, predictable performance at the lowest
possible cost.
▪ Using AWS Auto Scaling, it’s easy to setup application scaling for
multiple resources across multiple services in minutes.
▪ The service provides a simple, powerful user interface that lets you build
scaling plans for resources including Amazon EC2 instances and Spot
Fleets, Amazon ECStasks, Amazon DynamoDB tables and indexes,
and Amazon Aurora Replicas.
▪ AWS Auto Scaling makes scaling simple with recommendations that
allow you to optimize performance, costs, or balance between them.
▪ If you’re already using Amazon EC2 Auto Scaling to dynamically scale
your Amazon EC2 instances, you can now combine it with AWS Auto
Scaling to scale additional resources for other AWS services.
▪ With AWS Auto Scaling, your applications always have the right
resources at the right time.
AutoScaling
3
▪ For example, the following Auto Scaling group has a minimum size
of 1 instance, a desired capacity of 2 instances, and a maximum
size of 4 instances.The scaling policies that you define adjust the
number of instances, within your minimum and maximum number
of instances, based on the criteria that you specify.
Register a Domain Name
4
▪ You will connect that domain name through the Domain Name
System (DNS) to a currently running EC2 instance (such as
aWebApp, or website runningWordPress, Apache, NGINX, IIS, or
otherWebsite platform). If you already have a domain name
registered, do step 1 and then refer to your domain registrar’s
documentation for how to set the DNS record for your new site.
▪ Cost implications:
– There's an annual fee to register a domain, ranging from $9 to several
hundred dollars, depending on the top-level domain, such as .com. For more
information, see Amazon Route 53 Pricing for Domain Registration.This fee is
not refundable.
– When you register a domain, we automatically create a hosted zone that has
the same name as the domain.You use the hosted zone to specify where you
want Amazon Route 53 to route traffic for your domain.The fee for a hosted
zone is $0.50 per month.You can delete the hosted zone if you want to avoid
this charge.
Step 1: Obtain a Static URL
5
▪ Click https://us-east-
1.console.aws.amazon.com/ec2/v2/home?region=us-east-
1#Addresses:sort=publicIp to open the Elastic IPs part of the EC2
console in a new window and click Allocate New Address.
Step 1: Obtain a Static URL
6
▪ Set EIP used in: toVPC and clickYes, Allocate.
▪ Note your new IP address and click Close.
Step 1: Obtain a Static URL
7
▪ Select the new IP address in the Elastic IP column. Press
the Actions button and choose theAssociate Address option.
Step 1: Obtain a Static URL
8
▪ Click in the Instance text box and choose the option that has your
instance name.
Step 1: Obtain a Static URL
9
▪ Make a note of your new IP address in the Elastic IP column.
▪ Verify that your new Elastic IP address is working.
Step 2: Register a Domain Name
10
▪ Open the Route 53 console in a new window (Route 53 is AWS’s
DNS service).You can register new domain names with Route 53 as
well as manage DNS records for your domain.
– Select Get Started Now under Domain Registration.
Step 2: Register a Domain Name
11
▪ Click the Register Domain button. On the next screen, enter the
domain you want in the Choose a Domain box (cloudexamples is
shown in the image, then select aTop Level Domain(TLD) (e.g.
.com, .org, .co.uk, etc.) And click the Check button to see if the
domain is available. If the domain is available, click the Add to
cart button and scroll to the bottom of the page to click Continue.
Step 2: Register a Domain Name
12
▪ Enter yourContact Details.These are the details that will be
associated with your domain name.When you are done,
click Continue at the bottom of the page.
Step 2: Register a Domain Name
13
▪ Review the details as they are listed and, if they are correct, check
the box titled I have read and agree to the AWS Domain Name
Registration Agreement.Then click the Complete
Purchase button.
Step 2: Register a Domain Name
14
▪ If you registered a domain that has a generic top-level
domain (such as .com), you'll receive an email that asks you to
confirm your email address. (We don't send an email if we already
have confirmation that the email address is valid.)
– You must follow the link in this email to confirm your email address, or the
domain won't be registered.
– For all domains, you'll receive an email when your domain registration has
been approved.
Step 3: Configure DNS
15
▪ Open the Hosted Zones part of the Route 53 console. Next, click on
the domain name you created in step 2 (in this example we are
using cloudexamples.com but your domain will be different).
Step 3: Configure DNS
16
▪ If you have a static IP address for your website, virtual server, or
service; select Static IP Address below.
▪ If you have a Fully Qualified Domain Name (FQDN) for your
resource (this is common for applications launced by Elastic
Beanstalk, Lambda functions, S3 static sites and more advanced
deployments using Elastic Load Balancing) please select Fully
Qualified Domain Name (FQDN) below.
– Static IP Address
– Fully Qualified Domain Name
Step 3: Configure DNS: Static
IP Address
17
▪ Click the Create Record Set button. On the right side of the
window, enter www in the Nametext box. Enter the Elastic IP
address you created in step 1 in theValue box and then
click Create.
Step 3: Configure DNS: Static
IP Address
18
▪ Verify that you have a new entry in the main table with the value
you entered.
Step 3: Configure DNS: Static
IP Address
19
▪ Verify that your website is now available at your new domain by
typing your new website address into your web browser.
Step 3: Configure DNS: FQDN
20
▪ Click the Create Record Set button. On the right side of the
window, enter www in the Nametext box.Then selectYes for
the Alias setting. An AliasTarget box will appear, click in the Alias
Target box and you will see a list of resources that you have
available. Select the resource you want to point to (this will be
under Elastic Load Balancers and should the resource associated
with your Elastic Beanstalk deployed application), then
click Create.
Step 3: Configure DNS: FQDN
21
▪ Verify that you have a new entry in the main table with the value
you entered.
Step 3: Configure DNS: FQDN
22
▪ Verify that your website is now available at your new domain by
typing your new website address into your web browser.
CloudFormation
23
▪ AWS CloudFormation provides a common language for you to
describe and provision all the infrastructure resources in your cloud
environment.
▪ CloudFormation allows you to use a simple text file to model and
provision, in an automated and secure manner, all the resources
needed for your applications across all regions and accounts.This
file serves as the single source of truth for your cloud
environment.
▪ AWS CloudFormation is available at no additional charge, and you
pay only for the AWS resources needed to run your applications.
CloudFormation
24
▪ Templated resource provisioning •
– Create templates to describe the AWS resources used to run your application
– Provision identical copies of a stack
CloudFormation
25
▪ Create templates of the infrastructure and applications you want
to run onAWS
▪ Have CloudFormation automatically provision the required AWS
resources and their relationships from the templates
▪ Easily version, replicate, or update
the infrastructure and applications
using the templates
▪ Integrates with other development,
CI/CD, and management tools
CloudFormation
26
▪ Create templates of the infrastructure and applications you want
to run onAWS
▪ Have CloudFormation automatically provision the required AWS
resources and their relationships from the templates
▪ Easily version, replicate, or update
the infrastructure and applications
using the templates
▪ Integrates with other development,
CI/CD, and management tools
Cloud Best Practices
27
▪ Design for failure and nothing will fail
▪ Decouple your components
▪ Implement elasticity
– Automate your infrastructure
– Bootstrap your instances
▪ Think parallel
▪ Keep dynamic data closer to the compute and static data closer
to the end-user.

More Related Content

What's hot

Aws overview part 2(compute services)
Aws overview   part 2(compute services)Aws overview   part 2(compute services)
Aws overview part 2(compute services)Parag Patil
 
Web hosting and concepts of SEO UNIT 5
Web hosting and concepts of SEO UNIT 5Web hosting and concepts of SEO UNIT 5
Web hosting and concepts of SEO UNIT 5SURBHI SAROHA
 
Get Your Website Off the Ground
Get Your Website Off the GroundGet Your Website Off the Ground
Get Your Website Off the GroundVanessa Hurst
 
Basic Lecture on Domains and Webhosting
Basic Lecture on Domains and WebhostingBasic Lecture on Domains and Webhosting
Basic Lecture on Domains and WebhostingMarie Claire Ponsaran
 
Getting Maximum Performance from Amazon Redshift: Complex Queries
Getting Maximum Performance from Amazon Redshift: Complex QueriesGetting Maximum Performance from Amazon Redshift: Complex Queries
Getting Maximum Performance from Amazon Redshift: Complex Queriestimonk
 
(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...
(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...
(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...Amazon Web Services
 
Migrating to Exchange 2010 and ad 2080 r2
Migrating to Exchange 2010 and ad 2080 r2Migrating to Exchange 2010 and ad 2080 r2
Migrating to Exchange 2010 and ad 2080 r2Nathan Winters
 
Living on the edge
Living on the edgeLiving on the edge
Living on the edgeAdrian Cole
 

What's hot (12)

Aws overview part 2(compute services)
Aws overview   part 2(compute services)Aws overview   part 2(compute services)
Aws overview part 2(compute services)
 
Web hosting and concepts of SEO UNIT 5
Web hosting and concepts of SEO UNIT 5Web hosting and concepts of SEO UNIT 5
Web hosting and concepts of SEO UNIT 5
 
Get Your Website Off the Ground
Get Your Website Off the GroundGet Your Website Off the Ground
Get Your Website Off the Ground
 
Basic Lecture on Domains and Webhosting
Basic Lecture on Domains and WebhostingBasic Lecture on Domains and Webhosting
Basic Lecture on Domains and Webhosting
 
Getting Maximum Performance from Amazon Redshift: Complex Queries
Getting Maximum Performance from Amazon Redshift: Complex QueriesGetting Maximum Performance from Amazon Redshift: Complex Queries
Getting Maximum Performance from Amazon Redshift: Complex Queries
 
Aws, an intro to startups
Aws, an intro to startupsAws, an intro to startups
Aws, an intro to startups
 
(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...
(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...
(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...
 
Migrating to Exchange 2010 and ad 2080 r2
Migrating to Exchange 2010 and ad 2080 r2Migrating to Exchange 2010 and ad 2080 r2
Migrating to Exchange 2010 and ad 2080 r2
 
Webhostmaker
WebhostmakerWebhostmaker
Webhostmaker
 
Living on the edge
Living on the edgeLiving on the edge
Living on the edge
 
Cloud CDN User Manual Guide
Cloud CDN User Manual GuideCloud CDN User Manual Guide
Cloud CDN User Manual Guide
 
Introduction to DNS
Introduction to DNSIntroduction to DNS
Introduction to DNS
 

Similar to Aws overview part 3(databases, dns and management services)

SQL Server to Redshift Data Load Using SSIS
SQL Server to Redshift Data Load Using SSISSQL Server to Redshift Data Load Using SSIS
SQL Server to Redshift Data Load Using SSISMarc Leinbach
 
Best-Practices-for-Running-Windows-Workloads-on-AWS
Best-Practices-for-Running-Windows-Workloads-on-AWSBest-Practices-for-Running-Windows-Workloads-on-AWS
Best-Practices-for-Running-Windows-Workloads-on-AWSAmazon Web Services
 
McrUmbMeetup 22 May 14: Umbraco and Amazon
McrUmbMeetup 22 May 14: Umbraco and AmazonMcrUmbMeetup 22 May 14: Umbraco and Amazon
McrUmbMeetup 22 May 14: Umbraco and AmazonDan Lister
 
Scaling Your Production Application with Amazon Lightsail - AWS Online Tech T...
Scaling Your Production Application with Amazon Lightsail - AWS Online Tech T...Scaling Your Production Application with Amazon Lightsail - AWS Online Tech T...
Scaling Your Production Application with Amazon Lightsail - AWS Online Tech T...Amazon Web Services
 
Understanding Windows Azure’s Active Directory (AD) and PowerShell Tools
Understanding Windows Azure’s Active Directory (AD) and PowerShell ToolsUnderstanding Windows Azure’s Active Directory (AD) and PowerShell Tools
Understanding Windows Azure’s Active Directory (AD) and PowerShell ToolsEPC Group
 
Databases on aws part 1
Databases on aws   part 1Databases on aws   part 1
Databases on aws part 1Parag Patil
 
Simplifying Microsoft Architectures with AWS Services (WIN306) - AWS re:Inven...
Simplifying Microsoft Architectures with AWS Services (WIN306) - AWS re:Inven...Simplifying Microsoft Architectures with AWS Services (WIN306) - AWS re:Inven...
Simplifying Microsoft Architectures with AWS Services (WIN306) - AWS re:Inven...Amazon Web Services
 
Aws overview part 1(iam and storage services)
Aws overview   part 1(iam and storage services)Aws overview   part 1(iam and storage services)
Aws overview part 1(iam and storage services)Parag Patil
 
How to set up a Windows Domain on AWS
How to set up a Windows Domain on AWS How to set up a Windows Domain on AWS
How to set up a Windows Domain on AWS Julien Lecadou,MSc.
 
AWS cloud computing internship training.pptx
AWS cloud computing internship training.pptxAWS cloud computing internship training.pptx
AWS cloud computing internship training.pptxROHANBANSAL55
 
X1 Dev Club - Amazon EC2 et al.
X1 Dev Club - Amazon EC2 et al.X1 Dev Club - Amazon EC2 et al.
X1 Dev Club - Amazon EC2 et al.Serge Kovaleff
 
Configuring vpc-dns 1479227864 (2)
Configuring vpc-dns 1479227864 (2)Configuring vpc-dns 1479227864 (2)
Configuring vpc-dns 1479227864 (2)Appa Akhade
 
Aws big picture_overview
Aws big picture_overviewAws big picture_overview
Aws big picture_overviewAjay Bidari
 
Installation of Active Directory on Windows Server 2003 Server
Installation of Active Directory on Windows Server 2003 ServerInstallation of Active Directory on Windows Server 2003 Server
Installation of Active Directory on Windows Server 2003 Server► Supreme Mandal ◄
 
ENT201 Simplifying Microsoft Architectures with AWS Services
ENT201 Simplifying Microsoft Architectures with AWS ServicesENT201 Simplifying Microsoft Architectures with AWS Services
ENT201 Simplifying Microsoft Architectures with AWS ServicesAmazon Web Services
 
Introduction to EC2 (AWS)
Introduction to EC2 (AWS)Introduction to EC2 (AWS)
Introduction to EC2 (AWS)NodeXperts
 
Aws object storage and cdn(s3, glacier and cloud front) part 3
Aws object storage and cdn(s3, glacier and cloud front)   part 3Aws object storage and cdn(s3, glacier and cloud front)   part 3
Aws object storage and cdn(s3, glacier and cloud front) part 3Parag Patil
 

Similar to Aws overview part 3(databases, dns and management services) (20)

SQL Server to Redshift Data Load Using SSIS
SQL Server to Redshift Data Load Using SSISSQL Server to Redshift Data Load Using SSIS
SQL Server to Redshift Data Load Using SSIS
 
Best-Practices-for-Running-Windows-Workloads-on-AWS
Best-Practices-for-Running-Windows-Workloads-on-AWSBest-Practices-for-Running-Windows-Workloads-on-AWS
Best-Practices-for-Running-Windows-Workloads-on-AWS
 
McrUmbMeetup 22 May 14: Umbraco and Amazon
McrUmbMeetup 22 May 14: Umbraco and AmazonMcrUmbMeetup 22 May 14: Umbraco and Amazon
McrUmbMeetup 22 May 14: Umbraco and Amazon
 
Scaling Your Production Application with Amazon Lightsail - AWS Online Tech T...
Scaling Your Production Application with Amazon Lightsail - AWS Online Tech T...Scaling Your Production Application with Amazon Lightsail - AWS Online Tech T...
Scaling Your Production Application with Amazon Lightsail - AWS Online Tech T...
 
AWS Workspaces Overview v2
AWS Workspaces Overview v2AWS Workspaces Overview v2
AWS Workspaces Overview v2
 
Understanding Windows Azure’s Active Directory (AD) and PowerShell Tools
Understanding Windows Azure’s Active Directory (AD) and PowerShell ToolsUnderstanding Windows Azure’s Active Directory (AD) and PowerShell Tools
Understanding Windows Azure’s Active Directory (AD) and PowerShell Tools
 
Databases on aws part 1
Databases on aws   part 1Databases on aws   part 1
Databases on aws part 1
 
Simplifying Microsoft Architectures with AWS Services (WIN306) - AWS re:Inven...
Simplifying Microsoft Architectures with AWS Services (WIN306) - AWS re:Inven...Simplifying Microsoft Architectures with AWS Services (WIN306) - AWS re:Inven...
Simplifying Microsoft Architectures with AWS Services (WIN306) - AWS re:Inven...
 
Aws overview part 1(iam and storage services)
Aws overview   part 1(iam and storage services)Aws overview   part 1(iam and storage services)
Aws overview part 1(iam and storage services)
 
How to set up a Windows Domain on AWS
How to set up a Windows Domain on AWS How to set up a Windows Domain on AWS
How to set up a Windows Domain on AWS
 
AWS cloud computing internship training.pptx
AWS cloud computing internship training.pptxAWS cloud computing internship training.pptx
AWS cloud computing internship training.pptx
 
X1 Dev Club - Amazon EC2 et al.
X1 Dev Club - Amazon EC2 et al.X1 Dev Club - Amazon EC2 et al.
X1 Dev Club - Amazon EC2 et al.
 
Configuring vpc-dns 1479227864 (2)
Configuring vpc-dns 1479227864 (2)Configuring vpc-dns 1479227864 (2)
Configuring vpc-dns 1479227864 (2)
 
Aws big picture_overview
Aws big picture_overviewAws big picture_overview
Aws big picture_overview
 
Installation of Active Directory on Windows Server 2003 Server
Installation of Active Directory on Windows Server 2003 ServerInstallation of Active Directory on Windows Server 2003 Server
Installation of Active Directory on Windows Server 2003 Server
 
ENT201 Simplifying Microsoft Architectures with AWS Services
ENT201 Simplifying Microsoft Architectures with AWS ServicesENT201 Simplifying Microsoft Architectures with AWS Services
ENT201 Simplifying Microsoft Architectures with AWS Services
 
Introduction to EC2 (AWS)
Introduction to EC2 (AWS)Introduction to EC2 (AWS)
Introduction to EC2 (AWS)
 
1
11
1
 
Aws object storage and cdn(s3, glacier and cloud front) part 3
Aws object storage and cdn(s3, glacier and cloud front)   part 3Aws object storage and cdn(s3, glacier and cloud front)   part 3
Aws object storage and cdn(s3, glacier and cloud front) part 3
 
Ad installation
Ad installationAd installation
Ad installation
 

More from Parag Patil

Aws object storage and cdn(s3, glacier and cloud front) part 1
Aws object storage and cdn(s3, glacier and cloud front)   part 1Aws object storage and cdn(s3, glacier and cloud front)   part 1
Aws object storage and cdn(s3, glacier and cloud front) part 1Parag Patil
 
Billing & pricing
Billing & pricing Billing & pricing
Billing & pricing Parag Patil
 
Databases overview & concepts
Databases overview & conceptsDatabases overview & concepts
Databases overview & conceptsParag Patil
 
Spring boot-application
Spring boot-applicationSpring boot-application
Spring boot-applicationParag Patil
 
Databases on aws part 2
Databases on aws   part 2Databases on aws   part 2
Databases on aws part 2Parag Patil
 
Aws object storage and cdn(s3, glacier and cloud front) part 2
Aws object storage and cdn(s3, glacier and cloud front)   part 2Aws object storage and cdn(s3, glacier and cloud front)   part 2
Aws object storage and cdn(s3, glacier and cloud front) part 2Parag Patil
 
Development tools
Development toolsDevelopment tools
Development toolsParag Patil
 
Cloud concepts-and-technologies
Cloud concepts-and-technologiesCloud concepts-and-technologies
Cloud concepts-and-technologiesParag Patil
 
Elastic beanstalk
Elastic beanstalkElastic beanstalk
Elastic beanstalkParag Patil
 
Identity access management (iam)
Identity access management (iam)Identity access management (iam)
Identity access management (iam)Parag Patil
 

More from Parag Patil (13)

Aws object storage and cdn(s3, glacier and cloud front) part 1
Aws object storage and cdn(s3, glacier and cloud front)   part 1Aws object storage and cdn(s3, glacier and cloud front)   part 1
Aws object storage and cdn(s3, glacier and cloud front) part 1
 
Billing & pricing
Billing & pricing Billing & pricing
Billing & pricing
 
Databases overview & concepts
Databases overview & conceptsDatabases overview & concepts
Databases overview & concepts
 
Spring boot-application
Spring boot-applicationSpring boot-application
Spring boot-application
 
Databases on aws part 2
Databases on aws   part 2Databases on aws   part 2
Databases on aws part 2
 
Aws object storage and cdn(s3, glacier and cloud front) part 2
Aws object storage and cdn(s3, glacier and cloud front)   part 2Aws object storage and cdn(s3, glacier and cloud front)   part 2
Aws object storage and cdn(s3, glacier and cloud front) part 2
 
Security
SecuritySecurity
Security
 
Development tools
Development toolsDevelopment tools
Development tools
 
Cloud concepts-and-technologies
Cloud concepts-and-technologiesCloud concepts-and-technologies
Cloud concepts-and-technologies
 
Word press site
Word press siteWord press site
Word press site
 
Dynamo db
Dynamo dbDynamo db
Dynamo db
 
Elastic beanstalk
Elastic beanstalkElastic beanstalk
Elastic beanstalk
 
Identity access management (iam)
Identity access management (iam)Identity access management (iam)
Identity access management (iam)
 

Recently uploaded

9811611494,Low Rate Call Girls In Connaught Place Delhi 24hrs Available
9811611494,Low Rate Call Girls In Connaught Place Delhi 24hrs Available9811611494,Low Rate Call Girls In Connaught Place Delhi 24hrs Available
9811611494,Low Rate Call Girls In Connaught Place Delhi 24hrs Availablenitugupta1209
 
Call Girls in Saket (delhi) call me [8264348440 ] escort service 24X7
Call Girls in Saket (delhi) call me [8264348440 ] escort service 24X7Call Girls in Saket (delhi) call me [8264348440 ] escort service 24X7
Call Girls in Saket (delhi) call me [8264348440 ] escort service 24X7soniya singh
 
9891550660 Call Girls In Noida Sector 62 Short 1500 Night 6000
9891550660 Call Girls In Noida Sector 62 Short 1500 Night 60009891550660 Call Girls In Noida Sector 62 Short 1500 Night 6000
9891550660 Call Girls In Noida Sector 62 Short 1500 Night 6000teencall080
 
Varanasi ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
Varanasi ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRLVaranasi ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
Varanasi ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRLsiyak7254
 
Best VIP Call Girls Noida Sector 23 Call Me: 8700611579
Best VIP Call Girls Noida Sector 23 Call Me: 8700611579Best VIP Call Girls Noida Sector 23 Call Me: 8700611579
Best VIP Call Girls Noida Sector 23 Call Me: 8700611579diyaspanoida
 
Call Girls In {Green Park Delhi} 9667938988 Indian Russian High Profile Girls...
Call Girls In {Green Park Delhi} 9667938988 Indian Russian High Profile Girls...Call Girls In {Green Park Delhi} 9667938988 Indian Russian High Profile Girls...
Call Girls In {Green Park Delhi} 9667938988 Indian Russian High Profile Girls...aakahthapa70
 
Call Girls In {{Connaught Place Delhi}}96679@38988 Indian Russian High Profil...
Call Girls In {{Connaught Place Delhi}}96679@38988 Indian Russian High Profil...Call Girls In {{Connaught Place Delhi}}96679@38988 Indian Russian High Profil...
Call Girls In {{Connaught Place Delhi}}96679@38988 Indian Russian High Profil...aakahthapa70
 
Call Girls | 😏💦 03274100048 | Call Girls Near Me
Call Girls | 😏💦 03274100048 | Call Girls Near MeCall Girls | 😏💦 03274100048 | Call Girls Near Me
Call Girls | 😏💦 03274100048 | Call Girls Near MeIfra Zohaib
 
MYSORE CALL GIRLS ESCORT SER 92628/71154
MYSORE CALL GIRLS ESCORT SER 92628/71154MYSORE CALL GIRLS ESCORT SER 92628/71154
MYSORE CALL GIRLS ESCORT SER 92628/71154NiteshKumar82226
 
Best VIP Call Girl Noida Sector 48 Call Me: 8700611579
Best VIP Call Girl Noida Sector 48 Call Me: 8700611579Best VIP Call Girl Noida Sector 48 Call Me: 8700611579
Best VIP Call Girl Noida Sector 48 Call Me: 8700611579diyaspanoida
 
Bhubaneswar ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Bhuneshwar ESCORT SERVICE❤C...
Bhubaneswar ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Bhuneshwar ESCORT SERVICE❤C...Bhubaneswar ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Bhuneshwar ESCORT SERVICE❤C...
Bhubaneswar ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Bhuneshwar ESCORT SERVICE❤C...siyak7254
 
Hot Vip Call Girls Service In Sector 149,9818099198 Young Female Escorts Serv...
Hot Vip Call Girls Service In Sector 149,9818099198 Young Female Escorts Serv...Hot Vip Call Girls Service In Sector 149,9818099198 Young Female Escorts Serv...
Hot Vip Call Girls Service In Sector 149,9818099198 Young Female Escorts Serv...riyaescorts54
 
Best VIP Call Girls Noida Sector 24 Call Me: 8700611579
Best VIP Call Girls Noida Sector 24 Call Me: 8700611579Best VIP Call Girls Noida Sector 24 Call Me: 8700611579
Best VIP Call Girls Noida Sector 24 Call Me: 8700611579diyaspanoida
 
SANGLI CALL GIRL 92628/71154 SANGLI CALL
SANGLI CALL GIRL 92628/71154 SANGLI CALLSANGLI CALL GIRL 92628/71154 SANGLI CALL
SANGLI CALL GIRL 92628/71154 SANGLI CALLNiteshKumar82226
 
Call US Pooja📞 9892124323 ✅Call Girls In Mira Road ( Mumbai ) secure service...
Call US  Pooja📞 9892124323 ✅Call Girls In Mira Road ( Mumbai ) secure service...Call US  Pooja📞 9892124323 ✅Call Girls In Mira Road ( Mumbai ) secure service...
Call US Pooja📞 9892124323 ✅Call Girls In Mira Road ( Mumbai ) secure service...Pooja Nehwal
 
Malda ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Malda ESCORT SERVICE❤CALL GIRL
Malda ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Malda ESCORT SERVICE❤CALL GIRLMalda ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Malda ESCORT SERVICE❤CALL GIRL
Malda ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Malda ESCORT SERVICE❤CALL GIRLsiyak7254
 
Russian Call Girls in Goa %(9316020077)# Russian Call Girls in Goa By Russi...
Russian Call Girls  in Goa %(9316020077)# Russian Call Girls  in Goa By Russi...Russian Call Girls  in Goa %(9316020077)# Russian Call Girls  in Goa By Russi...
Russian Call Girls in Goa %(9316020077)# Russian Call Girls in Goa By Russi...Goa Call Girls Service Goa escort agency
 
JAMNAGAR CALL GIRLS 92628/71154 JAMNAGAR
JAMNAGAR CALL GIRLS 92628/71154 JAMNAGARJAMNAGAR CALL GIRLS 92628/71154 JAMNAGAR
JAMNAGAR CALL GIRLS 92628/71154 JAMNAGARNiteshKumar82226
 
Low Rate Russian Call Girls In Lajpat Nagar ➡️ 7836950116 Call Girls Service ...
Low Rate Russian Call Girls In Lajpat Nagar ➡️ 7836950116 Call Girls Service ...Low Rate Russian Call Girls In Lajpat Nagar ➡️ 7836950116 Call Girls Service ...
Low Rate Russian Call Girls In Lajpat Nagar ➡️ 7836950116 Call Girls Service ...riyasharma00119
 

Recently uploaded (20)

Call Girls In Saket Delhi 9953056974 (Low Price) Escort Service Saket Delhi
Call Girls In Saket Delhi 9953056974 (Low Price) Escort Service Saket DelhiCall Girls In Saket Delhi 9953056974 (Low Price) Escort Service Saket Delhi
Call Girls In Saket Delhi 9953056974 (Low Price) Escort Service Saket Delhi
 
9811611494,Low Rate Call Girls In Connaught Place Delhi 24hrs Available
9811611494,Low Rate Call Girls In Connaught Place Delhi 24hrs Available9811611494,Low Rate Call Girls In Connaught Place Delhi 24hrs Available
9811611494,Low Rate Call Girls In Connaught Place Delhi 24hrs Available
 
Call Girls in Saket (delhi) call me [8264348440 ] escort service 24X7
Call Girls in Saket (delhi) call me [8264348440 ] escort service 24X7Call Girls in Saket (delhi) call me [8264348440 ] escort service 24X7
Call Girls in Saket (delhi) call me [8264348440 ] escort service 24X7
 
9891550660 Call Girls In Noida Sector 62 Short 1500 Night 6000
9891550660 Call Girls In Noida Sector 62 Short 1500 Night 60009891550660 Call Girls In Noida Sector 62 Short 1500 Night 6000
9891550660 Call Girls In Noida Sector 62 Short 1500 Night 6000
 
Varanasi ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
Varanasi ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRLVaranasi ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
Varanasi ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
 
Best VIP Call Girls Noida Sector 23 Call Me: 8700611579
Best VIP Call Girls Noida Sector 23 Call Me: 8700611579Best VIP Call Girls Noida Sector 23 Call Me: 8700611579
Best VIP Call Girls Noida Sector 23 Call Me: 8700611579
 
Call Girls In {Green Park Delhi} 9667938988 Indian Russian High Profile Girls...
Call Girls In {Green Park Delhi} 9667938988 Indian Russian High Profile Girls...Call Girls In {Green Park Delhi} 9667938988 Indian Russian High Profile Girls...
Call Girls In {Green Park Delhi} 9667938988 Indian Russian High Profile Girls...
 
Call Girls In {{Connaught Place Delhi}}96679@38988 Indian Russian High Profil...
Call Girls In {{Connaught Place Delhi}}96679@38988 Indian Russian High Profil...Call Girls In {{Connaught Place Delhi}}96679@38988 Indian Russian High Profil...
Call Girls In {{Connaught Place Delhi}}96679@38988 Indian Russian High Profil...
 
Call Girls | 😏💦 03274100048 | Call Girls Near Me
Call Girls | 😏💦 03274100048 | Call Girls Near MeCall Girls | 😏💦 03274100048 | Call Girls Near Me
Call Girls | 😏💦 03274100048 | Call Girls Near Me
 
MYSORE CALL GIRLS ESCORT SER 92628/71154
MYSORE CALL GIRLS ESCORT SER 92628/71154MYSORE CALL GIRLS ESCORT SER 92628/71154
MYSORE CALL GIRLS ESCORT SER 92628/71154
 
Best VIP Call Girl Noida Sector 48 Call Me: 8700611579
Best VIP Call Girl Noida Sector 48 Call Me: 8700611579Best VIP Call Girl Noida Sector 48 Call Me: 8700611579
Best VIP Call Girl Noida Sector 48 Call Me: 8700611579
 
Bhubaneswar ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Bhuneshwar ESCORT SERVICE❤C...
Bhubaneswar ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Bhuneshwar ESCORT SERVICE❤C...Bhubaneswar ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Bhuneshwar ESCORT SERVICE❤C...
Bhubaneswar ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Bhuneshwar ESCORT SERVICE❤C...
 
Hot Vip Call Girls Service In Sector 149,9818099198 Young Female Escorts Serv...
Hot Vip Call Girls Service In Sector 149,9818099198 Young Female Escorts Serv...Hot Vip Call Girls Service In Sector 149,9818099198 Young Female Escorts Serv...
Hot Vip Call Girls Service In Sector 149,9818099198 Young Female Escorts Serv...
 
Best VIP Call Girls Noida Sector 24 Call Me: 8700611579
Best VIP Call Girls Noida Sector 24 Call Me: 8700611579Best VIP Call Girls Noida Sector 24 Call Me: 8700611579
Best VIP Call Girls Noida Sector 24 Call Me: 8700611579
 
SANGLI CALL GIRL 92628/71154 SANGLI CALL
SANGLI CALL GIRL 92628/71154 SANGLI CALLSANGLI CALL GIRL 92628/71154 SANGLI CALL
SANGLI CALL GIRL 92628/71154 SANGLI CALL
 
Call US Pooja📞 9892124323 ✅Call Girls In Mira Road ( Mumbai ) secure service...
Call US  Pooja📞 9892124323 ✅Call Girls In Mira Road ( Mumbai ) secure service...Call US  Pooja📞 9892124323 ✅Call Girls In Mira Road ( Mumbai ) secure service...
Call US Pooja📞 9892124323 ✅Call Girls In Mira Road ( Mumbai ) secure service...
 
Malda ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Malda ESCORT SERVICE❤CALL GIRL
Malda ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Malda ESCORT SERVICE❤CALL GIRLMalda ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Malda ESCORT SERVICE❤CALL GIRL
Malda ❤CALL GIRL 89101*77447 ❤CALL GIRLS IN Malda ESCORT SERVICE❤CALL GIRL
 
Russian Call Girls in Goa %(9316020077)# Russian Call Girls in Goa By Russi...
Russian Call Girls  in Goa %(9316020077)# Russian Call Girls  in Goa By Russi...Russian Call Girls  in Goa %(9316020077)# Russian Call Girls  in Goa By Russi...
Russian Call Girls in Goa %(9316020077)# Russian Call Girls in Goa By Russi...
 
JAMNAGAR CALL GIRLS 92628/71154 JAMNAGAR
JAMNAGAR CALL GIRLS 92628/71154 JAMNAGARJAMNAGAR CALL GIRLS 92628/71154 JAMNAGAR
JAMNAGAR CALL GIRLS 92628/71154 JAMNAGAR
 
Low Rate Russian Call Girls In Lajpat Nagar ➡️ 7836950116 Call Girls Service ...
Low Rate Russian Call Girls In Lajpat Nagar ➡️ 7836950116 Call Girls Service ...Low Rate Russian Call Girls In Lajpat Nagar ➡️ 7836950116 Call Girls Service ...
Low Rate Russian Call Girls In Lajpat Nagar ➡️ 7836950116 Call Girls Service ...
 

Aws overview part 3(databases, dns and management services)

  • 2. AutoScaling 2 ▪ AWS Auto Scaling monitors your applications and automatically adjusts capacity to maintain steady, predictable performance at the lowest possible cost. ▪ Using AWS Auto Scaling, it’s easy to setup application scaling for multiple resources across multiple services in minutes. ▪ The service provides a simple, powerful user interface that lets you build scaling plans for resources including Amazon EC2 instances and Spot Fleets, Amazon ECStasks, Amazon DynamoDB tables and indexes, and Amazon Aurora Replicas. ▪ AWS Auto Scaling makes scaling simple with recommendations that allow you to optimize performance, costs, or balance between them. ▪ If you’re already using Amazon EC2 Auto Scaling to dynamically scale your Amazon EC2 instances, you can now combine it with AWS Auto Scaling to scale additional resources for other AWS services. ▪ With AWS Auto Scaling, your applications always have the right resources at the right time.
  • 3. AutoScaling 3 ▪ For example, the following Auto Scaling group has a minimum size of 1 instance, a desired capacity of 2 instances, and a maximum size of 4 instances.The scaling policies that you define adjust the number of instances, within your minimum and maximum number of instances, based on the criteria that you specify.
  • 4. Register a Domain Name 4 ▪ You will connect that domain name through the Domain Name System (DNS) to a currently running EC2 instance (such as aWebApp, or website runningWordPress, Apache, NGINX, IIS, or otherWebsite platform). If you already have a domain name registered, do step 1 and then refer to your domain registrar’s documentation for how to set the DNS record for your new site. ▪ Cost implications: – There's an annual fee to register a domain, ranging from $9 to several hundred dollars, depending on the top-level domain, such as .com. For more information, see Amazon Route 53 Pricing for Domain Registration.This fee is not refundable. – When you register a domain, we automatically create a hosted zone that has the same name as the domain.You use the hosted zone to specify where you want Amazon Route 53 to route traffic for your domain.The fee for a hosted zone is $0.50 per month.You can delete the hosted zone if you want to avoid this charge.
  • 5. Step 1: Obtain a Static URL 5 ▪ Click https://us-east- 1.console.aws.amazon.com/ec2/v2/home?region=us-east- 1#Addresses:sort=publicIp to open the Elastic IPs part of the EC2 console in a new window and click Allocate New Address.
  • 6. Step 1: Obtain a Static URL 6 ▪ Set EIP used in: toVPC and clickYes, Allocate. ▪ Note your new IP address and click Close.
  • 7. Step 1: Obtain a Static URL 7 ▪ Select the new IP address in the Elastic IP column. Press the Actions button and choose theAssociate Address option.
  • 8. Step 1: Obtain a Static URL 8 ▪ Click in the Instance text box and choose the option that has your instance name.
  • 9. Step 1: Obtain a Static URL 9 ▪ Make a note of your new IP address in the Elastic IP column. ▪ Verify that your new Elastic IP address is working.
  • 10. Step 2: Register a Domain Name 10 ▪ Open the Route 53 console in a new window (Route 53 is AWS’s DNS service).You can register new domain names with Route 53 as well as manage DNS records for your domain. – Select Get Started Now under Domain Registration.
  • 11. Step 2: Register a Domain Name 11 ▪ Click the Register Domain button. On the next screen, enter the domain you want in the Choose a Domain box (cloudexamples is shown in the image, then select aTop Level Domain(TLD) (e.g. .com, .org, .co.uk, etc.) And click the Check button to see if the domain is available. If the domain is available, click the Add to cart button and scroll to the bottom of the page to click Continue.
  • 12. Step 2: Register a Domain Name 12 ▪ Enter yourContact Details.These are the details that will be associated with your domain name.When you are done, click Continue at the bottom of the page.
  • 13. Step 2: Register a Domain Name 13 ▪ Review the details as they are listed and, if they are correct, check the box titled I have read and agree to the AWS Domain Name Registration Agreement.Then click the Complete Purchase button.
  • 14. Step 2: Register a Domain Name 14 ▪ If you registered a domain that has a generic top-level domain (such as .com), you'll receive an email that asks you to confirm your email address. (We don't send an email if we already have confirmation that the email address is valid.) – You must follow the link in this email to confirm your email address, or the domain won't be registered. – For all domains, you'll receive an email when your domain registration has been approved.
  • 15. Step 3: Configure DNS 15 ▪ Open the Hosted Zones part of the Route 53 console. Next, click on the domain name you created in step 2 (in this example we are using cloudexamples.com but your domain will be different).
  • 16. Step 3: Configure DNS 16 ▪ If you have a static IP address for your website, virtual server, or service; select Static IP Address below. ▪ If you have a Fully Qualified Domain Name (FQDN) for your resource (this is common for applications launced by Elastic Beanstalk, Lambda functions, S3 static sites and more advanced deployments using Elastic Load Balancing) please select Fully Qualified Domain Name (FQDN) below. – Static IP Address – Fully Qualified Domain Name
  • 17. Step 3: Configure DNS: Static IP Address 17 ▪ Click the Create Record Set button. On the right side of the window, enter www in the Nametext box. Enter the Elastic IP address you created in step 1 in theValue box and then click Create.
  • 18. Step 3: Configure DNS: Static IP Address 18 ▪ Verify that you have a new entry in the main table with the value you entered.
  • 19. Step 3: Configure DNS: Static IP Address 19 ▪ Verify that your website is now available at your new domain by typing your new website address into your web browser.
  • 20. Step 3: Configure DNS: FQDN 20 ▪ Click the Create Record Set button. On the right side of the window, enter www in the Nametext box.Then selectYes for the Alias setting. An AliasTarget box will appear, click in the Alias Target box and you will see a list of resources that you have available. Select the resource you want to point to (this will be under Elastic Load Balancers and should the resource associated with your Elastic Beanstalk deployed application), then click Create.
  • 21. Step 3: Configure DNS: FQDN 21 ▪ Verify that you have a new entry in the main table with the value you entered.
  • 22. Step 3: Configure DNS: FQDN 22 ▪ Verify that your website is now available at your new domain by typing your new website address into your web browser.
  • 23. CloudFormation 23 ▪ AWS CloudFormation provides a common language for you to describe and provision all the infrastructure resources in your cloud environment. ▪ CloudFormation allows you to use a simple text file to model and provision, in an automated and secure manner, all the resources needed for your applications across all regions and accounts.This file serves as the single source of truth for your cloud environment. ▪ AWS CloudFormation is available at no additional charge, and you pay only for the AWS resources needed to run your applications.
  • 24. CloudFormation 24 ▪ Templated resource provisioning • – Create templates to describe the AWS resources used to run your application – Provision identical copies of a stack
  • 25. CloudFormation 25 ▪ Create templates of the infrastructure and applications you want to run onAWS ▪ Have CloudFormation automatically provision the required AWS resources and their relationships from the templates ▪ Easily version, replicate, or update the infrastructure and applications using the templates ▪ Integrates with other development, CI/CD, and management tools
  • 26. CloudFormation 26 ▪ Create templates of the infrastructure and applications you want to run onAWS ▪ Have CloudFormation automatically provision the required AWS resources and their relationships from the templates ▪ Easily version, replicate, or update the infrastructure and applications using the templates ▪ Integrates with other development, CI/CD, and management tools
  • 27. Cloud Best Practices 27 ▪ Design for failure and nothing will fail ▪ Decouple your components ▪ Implement elasticity – Automate your infrastructure – Bootstrap your instances ▪ Think parallel ▪ Keep dynamic data closer to the compute and static data closer to the end-user.

Editor's Notes

  1. https://docs.aws.amazon.com/autoscaling/ec2/userguide/what-is-amazon-ec2-auto-scaling.html
  2. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  3. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  4. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  5. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  6. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  7. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  8. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  9. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  10. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  11. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  12. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  13. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  14. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  15. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  16. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  17. https://aws.amazon.com/getting-started/tutorials/get-a-domain/
  18. https://aws.amazon.com/getting-started/tutorials/get-a-domain/