Exam Ref 70-533 Implementing Microsoft Azure Infrastructure Solutions
eBook - ePub
No longer available

Exam Ref 70-533 Implementing Microsoft Azure Infrastructure Solutions

Michael Washam, Rick Rainey, Dan Patrick, Steve Ross

Share book
  1. 560 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub
No longer available

Exam Ref 70-533 Implementing Microsoft Azure Infrastructure Solutions

Michael Washam, Rick Rainey, Dan Patrick, Steve Ross

Book details
Book preview
Table of contents
Citations

About This Book

Prepare for the newest versions of Microsoft Exam 70-533 –and help demonstrate your real-world mastery of implementing Microsoft Azure Infrastructure as a Service (IaaS). Designed for experienced IT professionals ready to advance their status, Exam Ref focuses on the critical thinking and decision-making acumen needed for success at the MCSA level.

  • Focus on the expertise measured by these objectives:
  • Design and implement Azure App Service Apps
  • Create and manage compute resources, and implement containers
  • Design and implement a storage strategy, including storage encryption
  • Implement virtual networks, including new techniques for hybrid connections
  • Design and deploy ARM Templates
  • Manage Azure security and Recovery Services
  • Manage Azure operations, including automation and data analysis
  • Manage identities with Azure AD Connect Health, Azure AD Domain Services, and Azure AD single sign on

This Microsoft Exam Ref:

  • Organizes its coverage by exam objectives
  • Features strategic, what-if scenarios to challenge you
  • Assumes you are an IT professional with experience implementing and monitoring cloud and hybrid solutions and/or supporting application lifecycle management

This book covers the 533 objectives as of December 2017. If there are updates for this book, you will find them at https://aka.ms/examref5332E/errata.

About the Exam

Exam 70-533 focuses on skills and knowledge for provisioning and managing services in Microsoft Azure, including: implementing infrastructure components such as virtual networks, virtual machines, containers, web and mobile apps, and storage; planning and managing Azure AD, and configuring Azure AD integration with on-premises Active Directory domains.

About Microsoft Certification

Passing this exam helps qualify you for MCSA: Cloud Platform Microsoft Certified Solutions Associate certification, demonstrating your expertise in applying Microsoft cloud technologies to reduce costs and deliver value. To earn this certification, you must also pass any one of the following exams: 70-532 Developing Microsoft Azure Solutions, or 70-534 Architecting Microsoft Azure Solutions, or 70-535, Architecting Microsoft Azure Solutions, or 70-537: Configuring and Operating a Hybrid Cloud with Microsoft Azure Stack.

Frequently asked questions

How do I cancel my subscription?
Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
Can/how do I download books?
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
What is the difference between the pricing plans?
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
What is Perlego?
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Do you support text-to-speech?
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Is Exam Ref 70-533 Implementing Microsoft Azure Infrastructure Solutions an online PDF/ePUB?
Yes, you can access Exam Ref 70-533 Implementing Microsoft Azure Infrastructure Solutions by Michael Washam, Rick Rainey, Dan Patrick, Steve Ross in PDF and/or ePUB format, as well as other popular books in Ciencia de la computación & MCSE. We have over one million books available in our catalogue for you to explore.

Information

Year
2018
ISBN
9781509304660

CHAPTER 1
Design and implement Azure App Service Web Apps

Microsoft Azure Web Apps is a fully managed Platform as a Service (PaaS) that enables you to build, deploy, and scale enterprise-grade web applications in seconds. Whether your organization requires a global web presence for the organization’s .com site, a solution to a line-of-business intranet application that is secure and highly available, or a site for a digital marketing campaign, Web Apps is the fastest way to create these web applications in Azure. Of all the Azure compute options, Web Apps is among the simplest to implement for scalability and manageability, and for capitalizing on the elasticity of cloud computing.
IMPORTANT: Have you read page xvii?
It contains valuable information regarding the skills you need to pass the exam.
MORE INFO COMPARING AZURE COMPUTE CHOICES
A feature comparison between the different Azure compute choices is available at https://docs.microsoft.com/en-us/azure/app-service-web/choose-web-site-cloud-service-vm.
This chapter covers Azure Web Apps through the lens of an IT professional responsible for deploying, configuring, monitoring, and managing Web Apps. As such, the tools that will be used to demonstrate these functions will be as follows:
  • Azure Portal
  • Azure PowerShell Cmdlets, v4.2.1
  • Azure CLI 2.0, v2.0.12
MORE INFO AZURE POWERSHELL CMDLETS AND CLI TOOLS
The Azure PowerShell Cmdlets and CLI tools can be downloaded and installed at: https://azure.microsoft.com/en-us/downloads/. Scroll down to the command-line tools section for installation links and documentation.
Skills covered in this chapter
  • Skill 1.1: Deploy web apps
  • Skill 1.2: Configure web apps
  • Skill 1.3: Configure diagnostics, monitoring, and analytics
  • Skill 1.4: Configure scale and resilience

Skill 1.1: Deploy web apps

As an IT professional, you need to understand how to create the infrastructure to host a web application. At a minimum, this means creating two resources: a web app and an App Service plan. The web app is the resource for which an application runs in. The App Service plan is the resource that defines the location, size, capacity, and features for which the web app will run on.
You will often need to create additional resources the application requires. For example, the application may require a SQL Database for storing data, a Redis cache for caching, a storage account for storing metadata, and perhaps a Contend Delivery Network (CDN) for serving static data to end users. Understanding the resource requirements for the application will help you determine the infrastructure you need to deploy to support it.
This skill covers how to:
  • Create an App Service Plan
  • Create a web app
  • Create deployment slots
  • Swap deployment slots
  • Deploy an application
  • Migrate a web app to a different App Service Plan

Create an App Service Plan

Azure Web Apps use App Service plans to group features and capacity settings that can be shared across one or more web apps. This enables you to more easily manage costs and resources for your web apps. App service plans are available in the following pricing tiers:
  • Free
  • Shared
  • Basic
  • Standard
  • Premium
  • Isolated
Images
EXAM TIP
The Basic, Standard, Premium, and Isolated tiers offer you dedicated compute resources. The Free and Shared tiers use shared compute resources with other Azure tenants. Furthermore, with Free and Shared, you are throttled to not exceed certain limits, such as CPU time, RAM consumption, and network bandwidth. More information on limits, quotas and constraints is available at https://docs.microsoft.com/en-us/azure/azure-subscription-service-limits.
Within the Basic, Standard, Premium, and Isolated tiers, you have three types of plans to choose from that vary only in their capacity, such as the number of cores and amount of RAM. As an example, the three types of plans in the Premium tier are shown in Figure 1-1.
Images
FIGURE 1-1 Premium tier options for web apps as shown in the Azure portal
You can create a new app service plan when you create a new web app using the Azure portal. Or, you can create an app service plan first and then use it later when creating one or more web apps.
Images
EXAM TIP
The Isolated pricing tier is only available for App Service Environments (ASE). ASE’s is a feature of Azure App Service that provides a dedicated and fully isolated environment for running app service apps (web apps, API apps, and mobile apps). Because ASE’s provide dedicated resources, they are ideal for scenarios where you have very high scale and/or memory requirements.
A unique feature of ASE’s is that they are deployed inside a subnet in a virtual network. This is how isolation is achieved. Being contained within a virtual network, ASE’s can be protected using network security controls such as Network Security Groups (NSGs) with inbound and outbound traffic rules. Because ASE’s are always deployed in a virtual network, they are ideal for scenarios where you have increased security requirements or when you want to use a virtual appliance for packet inspection, firewall protection, and other network security controls.
ASE’s can be internet-facing through one or more public IP addresses. These are called External ASE’s. An example where you may have multiple IP addresses is when your app service is hosting multiple web apps, and you need separate public IP addresses for each.
ASE’s can be strictly internal (not internet-facing), where web apps are deployed behind an internal load balancer (ILB). These are called ILB ASE’s and generally intended for scenarios where your virtual network is connected to an on-premises environment using either a site-to-site or ExpressRoute VPN.
Finally, because ASE’s are bound to a virtual network, there are some things you need to consider regarding your virtual network configuration, inbound and outbound traffic rules, and portal dependencies. Information on these additional considerations are available at: https://docs.microsoft.com/en-us/azure/app-service/app-service-environment/network-info.
Create an app service plan (Azure portal)
In the Azure portal, search the Marketplace for App Service Plan and open the New App Service Plan blade. Specify a name, location, operating system type (Windows or Linux), and the pricing tier as shown in Figure 1-2.
Images
FIGURE 1-2 New App Service Plan blade in the Azure portal
Create an app service plan (PowerShell)
Use the New-AzureRmAppServicePlan cmdlet to create a new app service plan.
# Define properties for the app service plan
$resourceGroupName = "cont...

Table of contents