Book Image

Microsoft Azure Administrator ??? Exam Guide AZ-103

By : Sjoukje Zaal
Book Image

Microsoft Azure Administrator ??? Exam Guide AZ-103

By: Sjoukje Zaal

Overview of this book

Microsoft Azure Administrator – Exam Guide AZ-103 will cover all the exam objectives that will help you achieve Microsoft Azure Administrator certification. Whether you want to pass the AZ-103 exam or simply want hands-on experience in administering Azure, this study guide will help you achieve your goal. It covers the latest features and capabilities related to configuring, managing, and securing Azure resources. Following Microsoft's AZ-103 exam syllabus, this guide is divided into five modules. The first module helps you understand how to manage Azure subscriptions and resources. You will be able to configure Azure subscription policies at Azure subscription level and even learn how to use Azure policies for resource groups. Later, the book covers techniques related to implementing and managing storage in Azure. You will be able to create and configure backup policies and perform restore operations. The next module will guide you through creating, configuring, and deploying virtual machines for Windows and Linux. In the last two modules, you will learn about configuring and monitoring virtual networks and managing identities. The book concludes with effective mock tests, along with answers to them to help you confidently pass the exam. By the end of this book, you will have developed the skills you need to pass Exam AZ-103 and gain the corresponding certification.
Table of Contents (26 chapters)
Free Chapter
1
Section 1: Managing Azure Subscriptions and Resources
5
Section 2: Implementing and Managing Storage
9
Section 3: Deploying and Managing Virtual Machines
12
Section 4: Deploying and Managing Virtual Networks
18
Section 5: Managing Identities

Creating and configuring storage accounts

Before you can upload any data or files to Azure storage, a storage account needs to be created. This can be done using the Azure portal, PowerShell, the CLI, ARM templates, or Visual Studio.

In this demonstration, we are going to create a storage account with PowerShell:

  1. First, we need to log in to the Azure account:
Connect-AzAccount
  1. If necessary, select the right subscription:
Select-AzSubscription -SubscriptionId "********-****-****-****-***********"
  1. Create a resource group:
New-AzResourceGroup -Name PacktPubStorageAccount -Location EastUS
  1. Create the storage account:
New-AzStorageAccount -ResourceGroupName PacktPubStorageAccount -AccountName packtpubstorage -Location "East US" -SkuName Standard_GRS -Kind StorageV2 -AccessTier Hot
In this demonstration, we created a new storage account using PowerShell. If...