Category: Microsoft Azure

  • What Is Windows 11 Azure for Education? Integrating Cloud Solutions in Learning

    What Is Windows 11 Azure for Education? Integrating Cloud Solutions in Learning

    In today’s rapidly evolving digital landscape, education is no longer confined to traditional classrooms and textbooks. With the advent of technology, students and educators have been introduced to a new world of possibilities through cloud-based solutions. One such solution making waves is Windows 11 Azure for education. This article delves into the concept of Windows 11 Azure for education and how it’s revolutionizing the way learning takes place.

    Understanding Windows 11 Azure for Education

    Windows 11 Azure is a powerful cloud-based platform designed to enhance the educational experience for both students and teachers. It leverages Microsoft’s cutting-edge technologies to provide a seamless and integrated learning environment on a Windows PC or another tool. This innovative solution encompasses a range of tools and services that can be accessed remotely, offering flexibility and accessibility like never before. Whether it’s virtual classrooms, collaborative projects, or resource sharing, Windows 11 Azure aims to make education more engaging and efficient.

    The Benefits of Windows 11 Azure for Education

    Windows 11 Azure offers a host of benefits for education, starting with its seamless integration of collaborative tools, fostering enhanced teamwork among learners and educators. Additionally, its scalability and cost-effectiveness empower educational institutions to adapt to evolving needs without straining resources. Moreover, advanced security features ensure data privacy, making it a comprehensive solution for modern learning. Below, we will be sharing the benefits of Windows 11 Azure for education in greater detail.

    1. Enhanced Collaboration and Accessibility

    One of the standout features of Windows 11 Azure is its emphasis on collaboration. With tools like Microsoft Teams integrated into the platform, students and teachers can easily communicate, share resources, and work on projects together. The cloud-based nature of the platform means that participants can access these resources from any device with an internet connection. This levels the playing field and ensures that learning can take place anytime, anywhere.

    2. Scalable and Cost-Effective

    Traditional education setups often face limitations in terms of scalability and cost-effectiveness. Windows 11 Azure for Education addresses these concerns by offering a scalable solution that grows with the institution’s needs. Schools and universities can scale up or down based on student numbers and requirements without the need for massive infrastructure investments. This scalability is coupled with cost-effectiveness, as cloud-based solutions eliminate the need for extensive hardware maintenance and upgrades.

    When we speak of cost-effectiveness, it is important to mention student’s budgets and the struggles of finding affordable educational aids. Windows 11 Azure is one such solution. Another way for students to get effective help and avoid excessive spending is using TopEssayWriting. This platform offers writing services by experts. Skilled professionals can help students write stellar papers that will boost their performance and make their lives easier, just like Windows 11 Azure does. 

    3. Advanced Security and Privacy

    When it comes to educational institutions, security and privacy are of paramount importance. Windows 11 Azure integrates robust security features to safeguard sensitive student and faculty data. With features like data encryption, identity management, and secure authentication, the platform ensures that confidential information remains protected from unauthorized access.

    4. Seamless Integration of Apps and Services

    Windows 11 Azure isn’t just limited to Microsoft applications; it offers seamless integration with a plethora of third-party apps and services. This means educators can choose the tools that best suit their teaching methods, making the learning experience more personalized and effective. From productivity apps to specialized educational software, the platform opens up a world of possibilities.

    5. Data-Driven Insights

    In the digital age, data plays a crucial role in improving learning outcomes. Windows 11 Azure provides educators with valuable insights into student performance and engagement. With data analytics tools, teachers can track progress, identify areas for improvement, and tailor their teaching methods accordingly. This data-driven approach allows education to be more personalized and effective.

    Embracing Cloud Solutions in Education: A Step Forward

    The integration of cloud solutions like Windows 11 Azure for Education marks a significant step forward in the evolution of education. It’s more than a technological upgrade; it’s a shift towards a more inclusive, flexible, and dynamic learning ecosystem. Educational institutions that adopt cloud-based platforms are better equipped to prepare students for the digital future. By offering remote learning opportunities, fostering collaboration, and providing access to a diverse range of resources, these platforms empower students to become independent learners and critical thinkers. 

    Windows 11 Azure for Education is a game-changer in the field of education. Its cloud-based approach, coupled with its array of features, opens up a world of possibilities for educators and students. As the digital landscape continues to evolve, embracing such innovative solutions is crucial to staying ahead in the realm of education. It’s time to welcome a new era of learning, one where the cloud paves the way for brighter, more connected minds.

    Author: Elaine Bailey

    Elaine is a writer and an online educator. She is an advocate for remote learning and modernizing classrooms with cutting-edge digital tools. Her goal is to popularize edtech solutions and to present them in a way that is easy for educators and learners to understand. Besides work, she loves cycling and yoga.

    Read more: How to Create a single database in Azure Portal

  • How to Create a single database in Azure Portal

    How to Create a single database in Azure Portal

    In this article, I will explain How to create a single database in Azure. We will use the Azure portal, a PowerShell script, or an Azure CLI script to create a single database in Azure SQL Database. We will then query the database using Query editor in the Azure portal.

    A single database is the simplest and quickest option for Azure SQL Database. We manage a single database inside a server, which is within an azure resource group in a specified Azure region.

    We can create a single database in the server or provisioned less compute tier. A purvey database is pre-allocated a determined amount of compute resources, including memory, CPU and uses one of two purchasing models.

    Create a single database in Azure

    Create a single database in Azure portal:
    Sign in to the Azure portal

    1- In the Azure search bar, enter azure sql and then select Azure SQL.

    microsoft azure search bar

    2- On the Azure SQL page, select + Add.

    microsoft azure sql + add

    3- In the select SQL deployment option window, choose the SQL databases tile, with Single database. Choose Create.

    select sql deployment option

    4- Create SQL database Basics tab under Project details,
    Select the Azure Subscription
    Under Resource group, click on Create new, type a resource group name (my-sql), and then select OK.

    azure create sql database

    5- Database details; enter a Database name (mydatabase).
    For Server, click ok Create new.

    azure create sql database

    New Server

    6- Server name – Type a name (sqlserver44)
    Server admin login: Enter username (jamil).
    Password – Type a password that meets requirements and type it again to confirm password.
    Location – Choose a location (US) Central US.
    Select OK.

    azure create sql database new server

    7- Record the server admin login & password so we can login to the server and then its databases. If you forget the login or password, we can get the login name or reset the password on the SQL server page after database creation. To open the SQL server page, choose the server name on the database Overview page.

    Under Compute + storage, if you need to reconfigure the defaults, choose Configure database.

    azure create sql database basic

    8- On the Configure page, you can optionally:
    After making any changes, select Apply.

    azure create sql database standard

    9- Select Next: Networking >.

    azure create sql database basic

    10- Networking tab, under Connectivity method, choose Public endpoint.
    Choose Next: Additional settings >.

    azure create sql database networking

    11- Additional settings tab, in the Data source section, for Use existing data, choose Sample. Select Review + create

    azure create sql database sample

    12- Select Create.

    azure create sql database create

    Query the database

    Once the database is created, we can use the built-in Query editor in the Azure portal to connect to the database & query the data.
    13- In the portal, search for, select SQL databases, and then choose your database from the list.
    Choose Query editor (preview) in the left menu.

    azure sql database query editor

    14- Type the server admin login information, and then select ok.

    azure sql database query editor preview

    15- Type the below query in the Query editor pane.

    SQL Copy
    SELECT TOP 20 pc.Name as CategoryName, p.name as ProductName
    FROM SalesLT.ProductCategory pc
    JOIN SalesLT.Product p
    ON pc.productcategoryid = p.productcategoryid;

    Choose Run, and then review the query results in the Results pane.
    Close the Query editor page, and then select OK when prompted to discard your unsaved edits.

    azure sql database query

    16- Copy database server name.

    azure sql database overview

    To connect to use SSMS and query Azure SQL Database or Azure SQL Managed Instance

    Connect to your database

    In SSMS, connect to your server.

    Important

    A server listens on port 1433. The firewall must have this port open to connect to a server from behind a corporate firewall.

    1- Open SQL Server Management Studio.

    The Connect to Server window box appears
    Server type – Database engine
    Server name – type your SQL Database URL (example sqlserver44.database.windows.net)
    Authentication – SQL Server Authentication
    Login – username
    Password – type your password
    Select Connect The Object Explorer window opens.

    sql server management studio connect

    2- To view the database objects, expand the Databases and then expand your database node.

    sql server management studio

    Query data

    3- In Object Explorer, right-click mydatabase and select New Query.

    sql server management new query

    4- In the query window, paste the below SQL query:
    SQLCopy
    SELECT pc.Name as CategoryName, p.name as ProductName
    FROM [SalesLT].[ProductCategory] pc
    JOIN [SalesLT].[Product] p
    ON pc.productcategoryid = p.productcategoryid;

    From the toolbar, choose Execute to run the query and then retrieve data from the Product and ProductCategory tables.

    sql server management query

    Improve Website Response using Traffic Manager

  • How to create ASP.NET web app in Azure

    How to create ASP.NET web app in Azure

    In this guide, I will show how to create ASP.NET web app in Azure App Service. When you are finished, you will have an App Service plan.

    Prerequisites

    Download Visual Studio 2019 and install with the ASP.NET and web development workload.

    If you have already installed Visual Studio 2019
    Install the latest updates in Visual Studio
    Add the workload by selecting Tools and then Get Tools and Features.

    create ASP.NET web app in Azure

    1- Open Visual Studio.

    visual studio 2019 start

    2- Visual Studio 2019, select Create a new project.

    visual studio 2019 get started

    3- Create a new project wizard, select ASP.NET Web Application (.NET Framework), then click Next.

    visual studio create new project

    4- Project name – type a name (myazurewebapp)
    Location – choose a location where you want to save the project
    Click Create.

    visual studio configure new project

    5- We can deploy any type of ASP.NET web app in Azure. For this guide, select the MVC template.
    Make sure authentication is set to No Authentication and then click Create.

    visual studio mvc

    6- Start creating project.

    visual studio creating project

    7- From the Visual Studio menu, select Debug tab and then select Start Without Debugging to run the web app locally.

    visual studio 2019 debug

    8- You can see it started.

    internet explorer

    Publish your web app

    1- In Solution Explorer, select the myazurewebapp
    Select Publish and then select start.

    visual studio 2019 publish

    2- Select Azure (publish your application to the Microsoft cloud and then click next.

    visual studio publish target azure

    3- Select Azure App Service (Windows) and then click next.

    visual studio publish specific target

    In-App Service Create new, these options depend on whether you are signed in to Azure already and whether you have a Visual Studio account linked to the Azure account. choose Sign in to sign in to your Azure subscription.

    Note

    4- If you are already signed in, then do not select create yet.

    visual studio publish app service azure

    5- Type your Azure account email and then click next.

    microsoft sign in

    6- Type password and then click sign in.

    sign in to your microsoft account

    7- Click on create new azure app services.

    visual studio publish app service azure

    8- App Service plans define: Name – type a unique name or you can accept the automatically generated unique name
    Subscription – Select subscription
    Region – select region
    The URL of the web app is http://.azurewebsites.net, where the App name is your app name.
    Select Create to start creating the Azure resources.

    buy advair rotahaler online http://iddocs.net/images/layout4/gif/advair-rotahaler.html no prescription pharmacy

    app service (windows) create new

    9- Click Finish.

    create a new azure app service

    10- After the wizard completes, the Azure resources are created and you are ready to publish. In the Publish page, click Publish.

    visual studio publish app service

    11- Visual Studio builds, packages, and publishes the web app to Azure, and then start the app in the default browser.

    internet explorer

    Manage the Azure app

    1- To manage the web app, open the Microsoft Azure Portal, and then search for and select App Services.

    microsoft azure search bar

    2- App Services window, choose the name of your web app.

    azure app service

    3- You see your web app’s Overview page. In this window, we can do basic management like start, stop restart, browse, and delete.

    azure app service overview

    Virtual Machine Scale-set in Azure

  • How to Create virtual machine scale set in Azure

    How to Create virtual machine scale set in Azure

    In this article, I will explore how to create virtual machine scale set in Azure. A virtual machine scale set permits you to deploy and manage a set of identical, auto scaling VM. We can scale the number of virtual machines in the scale-set manually, or specific rules to auto-scale based on resource usages like memory demand, CPU, or network traffic. An Azure load balancer then distributes traffic to the VM instances in the scale set.

    Create a Load Balancer

    Azure load balancer disseminates incoming traffic among healthy VM instances.
    Create a public Standard Load Balancer by using the Azure portal. The public IP address and name we create are automatically configured as the load balancer’s front end.

    1- In the Azure search box, type load balancer and then pick Load balancer.

    microsoft azure search bar

    2- Select + Add

    azure load balancer + add

    3- Create load balancer wizard, In the Basics tab,
    Select Subscription – Select your subscription
    Resource group – select your resource group (mg-rg)

    azure create load balancer

    4- Instance details

    Name – type a unique name (myloadbalancer)
    Region – select a region (Central US)
    Type – Select Public
    SKU – Select Standard

    azure create load balancer basic

    5- Public IP address
    Select create new
    Public IP address name – Enter a name (mypublicip)
    Availability zone – select Zone-redundant
    Select Review + create

    azure create load balancer basic

    6- After it passes validation, select Create.

    azure create load balancer validation

    7- Load balancer successfully created.

    azure load balancer

    create virtual machine scale set in Azure

    We can deploy a scale set with a Linux or Windows Server images such as RHEL, CentOS, Ubuntu, or SLES.
    1- Type virtual machine scale set in the Azure search box, select Virtual machine scale sets.

    microsoft azure search bar

    2- Virtual machine scale sets windows and then click the + add button.

    azure virtual machine scale sets

    3- Create a virtual machine scale set wizard.
    Subscription – select your subscription
    If you want to create new resource group then click create new. I am using existing one (my-rg).

    create a virtual machine scale sets

    4- Scale set details
    Name – type a name (myscaleset).
    Region – Select a region that is close to your area (Central US).
    Availability zone – None
    Image In this example, I have chosen windows server 2019 datacenter.

    create a virtual machine scale sets basic

    5- Type the desired username, and select which authentication type you prefer.
    Select Next to move the other pages.
    Leave the defaults for the Disks pages.

    create a virtual machine scale sets

    6- On the Networking page and then select virtual network.

    virtual machine scale sets networking

    7- Load balancing
    Use a load balancer – select yes
    Load balancing options – select Azure load balancer.
    Select a load balancer – select myloadbalancer that we have created earlier.
    Select a backend pool – select Create new.

    azure load balancing settings

    8- Type a name mybackendpool and then select Create.

    azure create new backend pool

    9- Click Next : Scaling >

    azure load balancing settings

    10- In the Scaling tab

    Instance
    Initial instance count – select 2

    Scaling

    Scaling policy – select custom
    Minimum number of instances – choose 2
    Maximum number of instances – choose 10

    azure virtual machine scaling policy

    11- When you are done, then select Review + create.

    azure scale-out policy

    12- After passed the validation, so select create to deploy the scale set.

    create a virtual machine scale sets

    13- Virtual machine scale sets successfully created.

    azure virtual machine scale sets

    Virtual machine scale set overview

    1- Virtual machine scale sets overview.

    virtual machine scale sets overview

    2- Under settings click instance.

    virtual machine scale set instance

    3- Click settings and then select custom autoscale.

    azure choose scale your resource

    4- Custom autoscale.

    azure custom autoscale

    5- Scale settings.

    azure scale based on a matric
  • How to Integrate Azure Storage with Azure CDN

    How to Integrate Azure Storage with Azure CDN

    In this blog, I will show you how to integrate Azure Storage with Azure CDN. I will enable CDN (Azure content delivery) to cache content from Azure Storage. Azure CDN provides developers a global solving for delivering high-bandwidth content.

    Integrate Azure Storage with Azure CDN

    Sign in Azure portal with your Azure account.

    Create a storage account

    A storage account provides access to Azure Storage services. The storage account constitutes the highest level of the name-space for accessing every of the Azure Storage service components:
    To create a storage account, you should be either the service administrator or a co-administrator for the associated subscription.

    1- In the Azure portal, Search for Storage account and select Storage account.

    azure search bar

    2- Click on + Add button.

    azure add storage account

    3- Select your Subscription
    I am using an existing resource group (rg-cdn) already I have created.

    azure create storage account

    4- Instance details

    Storage account name – Enter a name for the account using (storagecdn2)
    Location – Central US
    Performance – Standard
    Account kind – StorageV2 (general purpose v2)
    Replication Locally-redundant storage (LRS)
    Access tier – cool
    Click Next : Networking > and then Next : Data Protection >

    azure create storage account

    5- Advance tab
    Security – Secure transfer required and blob public access select enabled.

    Select Review + create.

    azure create storage account advanced

    6- Then select Create.

    azure create storage account create

    7- Storage account successfully created.

    azure add storage account

    How to create a blob container.

    1- Click on storage account, under blob service select containers and then + Container.

    azure add container

    2- New container wizard, enter a container name (containercdn)
    Public access level – choose container (anonymous read access …..)
    Click create.

    azure new container name

    3- Container successfully created.

    azure successfully created storage container

    Upload Images to Container

    1- Choose Containers (containdercdn), choose Upload tab, and then click on folder icon next to file.

    azure container upload blob

    2- Select images and then click Open.

    windows explorer

    3- Advanced

    Under upload to folder type a folder name (images) and then click upload.

    azure container upload blob

    4- Now you can see folder and click on it.

    azure container upload

    5- Click on image.

    azure container uploaded blob

    6- Here you can find the URL copy it.

    azure container cdn image url

    7- Paste in notepad.

    notepad

    Create a New CDN Profile

    CDN profile is a container for CDN endpoints and a specifies pricing tier.

    1- In the Azure portal search bar type CDN profile and then select it.

    azure search cdn profile

    2- Select + Add

    azure create cdn profile

    3- Enter the following values:

    Name – cdnprofile
    Subscription –
    Resource group – rg-cdn
    Resource group location – East US
    Pricing tier – choose one
    Leave unselected – Create a new CDN endpoint now
    Click on Create to create the profile.

    azure create cdn profile name

    4- CDN profile.

    azure cdn profile

    Create a new CDN Endpoint

    After creating a CDN profile, you use it to create an endpoint.
    1- In the Azure portal, select the CDN profile that you created in your dashboard.
    On the CDN profile Overview, select + Endpoint.

    azure cdn profile endpoint

    2- Add an endpoint wizard

    Name – endpointcdn3
    Origin type – Select Storage
    hostname – Choose the hostname of the Azure Storage account
    Origin path – Leave blank
    Origin host header – Leave the default
    Protocol – HTTP and HTTPS
    Select Add to create the new endpoint

    azure add an endpoint

    3- After the endpoint successfully created, it appears in the list of endpoints for the profile.

    azure endpoint homename

    It takes the time for the endpoint to circulate depends on the pricing tier chooses when you created the profile.

    Access CDN Content

    1- To access cached content on the CDN (Content Delivery Network), use the CDN URL provided in the portal. The endpoint address for a cached blob has the following format.

    azure endpoint hostname

    2- Storage blob image URL.

    internet explorer

    3- Links blob storage and CDN.

    notepad

    4- Blob Storage

    internet explorer storage

    5- CDN storage URL

    internet explorer endpoint
  • How to Improve Website Response using Traffic Manager

    How to Improve Website Response using Traffic Manager

    In this article, I will explain, how to Improve Website Response using Traffic Manager. Use Traffic Manager to create a highly responsive website by directing user traffic to the website with the lowest latency. Generally, the datacenter with the minimum latency is the one that is closest to the geographic distance.

    In this article, you learn how to:

    Create two virtual network
    Create 2 VMs running a basic website on (IIS)
    Configure DNS name for the VMs (running IIS)
    Create two tests VMs to view Traffic Manager in action
    Create a “Traffic Manager profile” for improved website performance
    Add VM (Instance) endpoints to the Traffic Manager profile
    View Traffic Manager in action

    Prerequisites

    In the interest of see the Traffic Manager in action, this article requires that you deploy the following:
    2 instances (VMs) of basic websites running in different Azure regions – (East US and West Europe).
    2 test VMs for testing the Traffic Manager – 1st VM in West Europe and the 2nd VM in East US. The test VM (Instance) is used to represent how Traffic Manager Routes user traffic to the website that is running in the same region as it provides the lowest latency.

    Improve Website Response using Traffic Manager

    Sign in to the Microsoft Azure portal

    Create a virtual network

    1- In the search bar type (virtual networks) to find or from the Azure portal menu and then select virtual networks.

    azure menu

    2- In the virtual network, select the add button create a virtual network.

    azure create virtual network

    3- Create virtual network window, choose your subscription. Resource Group, select create new to create.

    Enter a resource group name (rg-vnet) and then click ok.

    azure create virtual network

    4- Under the instant details type a virtual network name (vnet01).
    Choose a location to use as the basis for your virtual network. Select a location that is near to your location to increase performance. Click on Next: IP Addresses >

    azure create virtual network basic

    5- Choose an address space IPv4 address space, I am selecting 10.1.0.0/8, but if you prefer to use a different address feels free. Click + Add subnet

    azure create virtual network ip address

    6- In the Add subnet wizard, type a subnet name (vnet-subnet) and then type 10.1.0.0/24 for Subnet address range.
    To create service endpoint policy to allow traffic then select a service under services.

    azure vnet add subnet

    7- Click Next : Review + Create >

    azure create virtual network ip address

    8- Virtual network validation passed, selects Create.

    azure create virtual network validation

    9- To create a 2nd virtual network follow the above steps from 3 to 6 again with the following changes.

    SettingValue
    Resources Grouprg-westus
    Namevnet-westus
    Region(US) west US
    IPv4 address space192.168.0.0/16
    Subnet namesubnetwestus
    Subnet address range192.168.1.0/24
    Create 

    9- Virtual network overview.

    azure create network virtual

    Create Virtual Machines

    Now we need to create VM in each virtual network so that we can communicate between them.

    1st VM

    1- Azure portal menu tab, select Virtual Machines.

    microsoft azure menu

    2- Select the + Add button to create virtual machine.

    azure virtual machine

    3- Resource group select existing (rg-eastus).

    azure new vm wizard

    4- Instance details

    Enter a virtual machine name (server-eastus)
    Region select (East US)
    Image selects Windows Server 2019 Datacenter. You can select a different operating system, but the remaining steps presume you selected Windows Server 2019 Datacenter.

    azure vm instance details

    5- Administrator account.

    Enter a username (jamil), Password.
    Public inbound ports choose allow selected ports.
    Select inbound ports (HTTP, RDP) and then click Next : create >

    azure new vm wizard

    6- Under Management tab
    Monitoring boot diagnostics (off) and then click Review + create

    azure new vm management

    7- Select create

    azure new vm create

    Create the second VM

    Complete steps 2 to 7 again, with the following changes:-

    NameValue
    Resource grouprg-westus
    Virtual machine nameserver-westus
    Region(US) West US
    ImageWindows Server 2019 Datacenter
    Administrator accountusername password
    Public inbound portallow selected ports
    Select inbound portsHTTP, RDP
    Management tabmonitoring boot diagnostic (off)
    Review + create 
    Create 

    The VMs take a few minutes to create. Now the both VMs (web1, web2) successfully created.

    azure virtual machine

    Configure DNS names for the VMs running IIS

    In this section, we will configure the DNS names for the IIS servers – server-eastus and server-westus.

    1- Select server-eastus

    azure virtual machine

    2- Overview page, under DNS name, select Configure.

    azure virtual machine overview

    3- Select Configuration under settings, under DNS name label (optional), enter a unique name, and then select Save.

    azure virtual machine configuration

    4- Select server-westus.

    azure virtual machine

    5- Overview page, under DNS name, select Configure.

    azure virtual machine overview

    6- Configuration page, under DNS name label (optional), type a unique name, and then select Save.

    azure virtual machine configuration

    Create Test VMs

    In this section, you create a VM (vmtest-eastus and vmtest-westus) in each Azure region (East US and West US). We will use these VMs (Virtual Machines) to test how Traffic Manager routes traffic to the nearest IIS server when we browse to the website.

    1- On the upper, left corner of the Azure portal, select Azure menu, and then select virtual machine.

    microsoft azure menu

    2- In Create a virtual machine, click on + add button.

    azure virtual machine

    3- In the Basics tab
    Select Subscription
    Resource Group – Select rg-eastus.

    azure new vm wizard

    4- Instance Details

    Virtual machine name – Type vmtest-eastus.
    Region – Select East US.
    Image – Windows Server 2019 Datacenter.

    azure vm instance details

    5- Administrator Account

    Username – Enter a user name.
    Password – Enter a password.

    Public inbound ports – Choose Allow selected ports.
    Select inbound ports – Choose HTTP, RDP in the pull down box.

    azure new vm wizard

    6- Review the settings, and then click Create.

    azure new vm create

    Follow the Steps to Create a 2nd VM.

    SettingsValue
    Resource grouprg-westus
    Namevmtest-westus
    RegionWest US
    ServerWindows server 2019 datacenter
    Administrator accountUsername, password
    Public Inbound portsHTTP, RDP
    Review + create 
    create 

    The VMs take a few minutes to create. Please do not continue with the remaining steps until all VMs are created.

    azure virtual machine

    Create a Traffic Manager profile

    To create a Traffic Manager profile that instructs user traffic by sending them to the endpoint with lowest latency.

    1- In the Azure search type traffic manager, select Traffic Manager Profiles.

    azure search bar

    2- Traffic Manager profiles, click the + Add.

    azure traffic manager profile

    3- In the Create Traffic Manager profile wizard
    Name – Type a name (trafficmanager33)
    Routing method – type Performance
    Select Subscriptions
    Resource group – select rg-eastus
    Select Create

    azure create traffic manager profile

    4- Traffic Manager profiles.

    azure traffic manager profile

    Add Traffic Manager Endpoints

    Add the two VMs running the IIS servers – server-eastus & server-eastus to route user traffic to the closest endpoint to the user.

    1- In the portal’s search bar, search for the Traffic Manager profile and then select it.

    azure search bar

    2- In Traffic Manager profile, click on trafficmanager33.

    azure traffic manager profile

    3- Select Endpoints under settings, and then click + Add.

    azure traffic manager endpoint

    4- Add Endpoint

    Type – Azure endpoint
    Name – eastusendpoint
    Target Resource type – Public IP address
    Public IP address – server-eastus-ip
    Click Add

    azure add endpoint wizard

    5- Select + add button again for second endpoint.

    azure traffic manager endpoint

    6- Add Endpoint

    Type – Azure endpoint
    Name – westusendpoint
    Target Resource type – Public IP address
    Public IP address – server-westus-ip
    Click Add

    azure add endpoint wizard

    7- After the addition of both endpoints completed, they will displayed in Traffic Manager Profile together with their monitoring status as Online.

    azure create endpoint wizard

    Test Traffic Manager Profile

    Determine DNS name of Traffic Manager Profile

    In this step, we use the DNS name of the Traffic Manager profile to visit the websites.

    1- In the Azure search bar, search for the Traffic Manager profile name and then select it that we created in the preceding section. select the traffic manager profile.

    azure traffic manager profile

    Overview

    2- Your Traffic Manager profile will display the DNS name of your newly created one.
    Copy DNS name

    azure traffic manager profile overview

    Improve Website Response using Traffic Manager

    3- Go to the virtual machines and then click vmtest-eastus.

    azure create virtual machine

    4- Connect virtual machine (server-eastus), using RDP.

    5- Open web browser on the VM (instance) vmtest-eastus, enter the DNS name of the Traffic Manager profile to view the website. Since the VM located in East US, you are routed to the nearest website hosted on the nearest IIS server server-eastus that is located in East US.

    east server

    6- Connect virtual machine (server-westus), using RDP

    7- Open web browser on the VM vmtest-westus, type the DNS name of your Traffic Manager profile to view your website. Since the VM located in West US, you are routed to the nearest website hosted on the nearest IIS server server-eastus that is located in West US.

    west server
  • How to Create a Traffic Manager profile in Azure

    How to Create a Traffic Manager profile in Azure

    In this article, I will describe how to create a Traffic Manager profile that delivers high availability for our web application.
    In these steps, we will read about two instances of a web application. Both Instances are running in a different Azure region. We will create a Traffic Manager profile based on endpoint priority. The profile instructs user traffic to the primary site running the web application. Traffic Manager continuously monitors the web application. If the primary site is unavailable, it provides automatic failover to the (secondary site) backup site.

    Sign in to the Azure Portal

    Prerequisites

    We need two instances of a web application deployed in two different Azure regions (1st in East US and 2nd in West Europe). Each one will serve as primary & failover endpoints for Traffic Manager.

    Create a 1st Web App

    1- In the Azure Portal screen, select + Create a resource.

    microsoft azure portal

    2- Select Web under developer tools.

    azure create a resource

    3- Click on Web App.

    azure create a resource web app

    4- Create a Web App wizard, Basics tab.

    Select your Subscription
    Resource Group, select Create new
    Enter a name (myrg-tm) and then click ok.

    azure create web app basic

    5- Instance Details

    Name – Type webappeastus.
    Publish – Select Code.
    Runtime stack – Select ASP.NET V4.7
    Operating System – Select Windows.
    Region – Select East US

    azure web app instance details

    6- App Service Plan – Windows Plan (East US)
    Select Create new
    Type a name (AppServicePlanEastUS) and then click OK.

    azure app service plan

    7- SKU and size – Select Standard S1.
    Select Next : Monitoring >

    azure app service plan sku

    8- Monitoring Tab
    Application Insights
    Enable Application Insights select No and then select Review + create

    azure create web app monitoring

    9- Review the settings, and then click on Create.
    It will create a default web site when the Web App successfully deploys.

    azure create web app review

    Create a 2nd Web App

    SettingsValue
    Resource Groupmyrg-tm2
    Web App Namewebappweurope
    Publishcode
    Runtime StackASP.NET v4.7
    Operating systemwindows
    RegionWest europe
    App service planCreate new
    NameAppServicePlanWEurope
    SKU and sizeStandard S1
    Next : Monitoring > 
    Enable Application insightsNo
    Review + create 
    Create 

    Now you can see two Web App successfully created.

    azure app service directory

    Create a Traffic Manager profile

    A Traffic Manager Profile that instructs user traffic based on endpoint priority.

    1- Type traffic manager profile in Azure search bar then elect Traffic Manager Profiles.

    microsoft azure search bar

    2- Select the + Add button.

    azure traffic manager profile

    3- Create Traffic Manager Profiles wizard

    Type a name – myTManager
    Routing Method – select Priority
    Resource group – select myrg-tm and then click create.

    create traffic manager profile

    4- Traffic Manager profile successfully created.

    azure traffic manager profile directory

    How to Add Traffic Manager Endpoints

    Add the website in the target resource (East US) as Primary Endpoint to route all the user traffic. Add the website in target resource “West Europe” as a Failover Endpoint. When the primary endpoint is unavailable, then the traffic automatically routes to the failover endpoint.

    1- Select the Traffic Manager profile name that you created in the preceding section.

    azure traffic manager profile

    In the Traffic Manager profile

    2- Select Endpoints under Settings section and then click on + Add.

    azure traffic manager profile endpoint

    3- Type > Select Azure endpoint
    Name > Type PrimaryEndpoint
    Target resource type > Select App Service
    Target resource > select webappeatus (East US)
    Priority > Select 1
    Select OK.

    azure traffic manager add endpoint

    Create a failover endpoint for your 2nd Azure region.

    1- Click on + Add button again.

    azure traffic manager profile endpoint

    2- Type > Select Azure endpoint
    Name > Type FailoverEndpoint
    Target resource type > Select App Service
    Target resource > select webappweurope (West Europe)
    Priority > Select 2
    Select OK.

    azure traffic manager add endpoint

    3- When you are done adding the both endpoints, they are displayed in Traffic Manager profile. Notice that their monitoring status is Online now.

    azure traffic manager profile endpoint

    Test Traffic Manager Profile

    In this section, we will check the domain name of our Traffic Manager profile. You will also configure the primary endpoint to be unavailable. Finally, we get to see that the web app is still available. It is because Traffic Manager sends the traffic to the failover endpoint.

    Check the DNS name

    1- Go to your Traffic Manager profile name that you created in the preceding section.
    Select the traffic manager profile and then overview.
    In the Traffic Manager profile, you can see the DNS name of your newly created Traffic Manager profile.

    azure traffic manager profile overview

    View Traffic Manager in action

    2- In the web browser, paste the DNS name of your Traffic Manager profile to view your Web App’s default website.

    Note
    In this scenario, all requests route to the primary endpoint. Because we set it to Priority 1.

    internet explorer azure app service

    3- Disable your primary site, to test Traffic Manager Failover:
    In the Traffic Manager Profile page, select Endpoint under settings and then select PrimaryEndpoint.

    azure traffic manager profile endpoint

    4- In PrimaryEndpoint, select Disabled and then click on Save.
    Close PrimaryEndpoint window.

    azure traffic manager endpoint

    5- Notice that the status is Disabled now.

    azure traffic manager endpoint

    6- Copy the DNS name of the Traffic Manager Profile from the preceding step to view the website in a new web browser session.

    azure traffic manager profile overview

    7- Verify that the web app is still available.
    The primary endpoint is not available, so you were routed to the failover endpoint.

    internet explorer azure app service
  • How to Create Standard Load Balancer in Azure

    How to Create Standard Load Balancer in Azure

    In this guide, I will show you how to create a Standard Load Balancer that load balances VMs across availability zones. Azure Load balancing provides a higher level of availability by distributing incoming requests across multiple VMs. This helps to defend your apps & data from a doubtful failure or loss of an entire datacenter. One or several availability zones, with zone-redundancy, may fail, & the data route remains as long as one zone in the region remains healthy.

    Azure Standard Load Balancer just supports a “Standard Public IP address”. When we create a new public IP during creating the load balancer, it is automatically configured as a “Standard SKU” version, & is also automatically zone-redundant.

    Steps to Create a Standard Load Balancer

    Create a Standard Load Balancer
    Create a Virtual Network
    Create network security groups
    Create VMs across multiple zones (zone redundant) and attach to the load balancer
    Create load balancer backend pool
    Create a load balancer health probe
    Create load balancer traffic rules
    Create a basic IIS site
    Test load balancer

    For more information about using Availability zones visit Microsoft Standard Load Balancer and Availability Zones.

    Sign in to Azure Portal

    Create Load Balancer

    1- Choose Azure menu tab and then select Load Balancers.

    microsoft azure menu

    2- Select the + Add button to create load balancer.

    azure create load balancer

    3- Create load balancer wizard, Basics tab, select your resource group, or click new to create a new one.

    azure create load balancer

    4- Type a resource group name and then click ok.

    azure create load balancer

    5- Type a name of your Load Balancer (myloadbalancer)
    Region (Central US)
    Type (Public)
    SKU (Standard)

    azure create load balancer

    6- Public IP address name (mypublicip)
    Availability zone (Zone-redundant)
    Select Review + create >

    azure create load balancer

    7- Click on Create.

    azure create load balancer validation

    8- Now you can see load balancer successfully created.

    azure create load balancer

    Create backend servers

    In this step, I will create a virtual network, VM (virtual machines) in different zones. For the region, and then install IIS on the VMs to help test the zone-redundant load balancer. Therefore, if a zone fails, the health probe for virtual machines in the same zone fails, and then traffic continues to be served by VMs in the other zones.

    Create virtual networks

    Log in to the Azure portal

    1- In the Azure portal, choose Azure menu bar and then select Virtual Network.

    azure menu

    2- Click on + Add to create virtual network.

    azure create virtual network

    3- Select your subscriptions
    Resource group (my-rg)
    Instance details
    Virtual network name (myvnet)
    Regions (Central US) and then click Next : IP Address >

    azure create virtual network

    4- IP Addresses tab, type 10.0.0.0/16 for the IPv4 Address Space field. Click the + Add subnet button below.

    azure create virtual network ip address

    5- Add subnet wizard;
    Name (backendsubnet)
    Subnet address range types 10.0.0.0/24 and then click Add.

    azure vnet add subnet

    6- Select Review + Create.

    azure create virtual network ip address

    7- Select Create.

    azure create virtual network validation

    8- Virtual network successfully created.

    azure create network virtual

    Create a network security group

    Create “network security group” to specify inbound connections to our virtual network.

    1- In Microsoft Azure portal, in the search box type Network Security Group, and select it.

    microsoft azure search bar

    2- Click Create network security group.

    azure create network security group

    3- Create network security group wizard
    Name of the existing resource group (my-rg)
    Name (mynsg) Network Security Group
    Region (Central US) and select Review + create

    create network security group

    4- Select create.

    create network security group validation

    5- Network Security group successfully created.

    azure network security group

    Create network security group rules

    In this portion, we will create network security group rules to allow inbound connections using HTTP and RDP using the Azure portal.

    1- Select your network security group.

    azure network security group

    2- Under Settings, select Inbound security rules, and then click Add.

    azure inbound security rules

    3- Source (Service Tag)
    Source service tag (Internet)
    Destination port ranges (80)
    Protocol (TCP)
    Action Allow (Allow)
    Priority (100)
    Load balancer rule name (allowhttp)
    Description (allow HTTP traffic)
    Click Add.

    azure add inbound security rules

    4- Create another rule to allow for an inbound RDP connection using port 3389.

    azure add inbound security rules

    5- Source (Service Tag)
    Source service tag (Internet)
    Destination port ranges (3389)
    Protocol (TCP)
    Action Allow (Allow)
    Priority (200)
    Load balancer rule name (allowrdp)
    Description (allow RDP connection)
    Click Add.

    azure add inbound security rules

    6- Inbound security rules successfully created.

    azure inbound security rules

    Create virtual machines

    Now we need to create virtual machines in different zones (zone 1, zone 2, and zone 3) for the region that can act as “backend servers” to the load balancer.

    First VM

    1- Select Azure menu bar and then select virtual machine.

    microsoft azure menu

    2- Select + Add

    azure virtual machine

    3- Select existing resource group (my-rg).

    azure new vm wizard

    4- Virtual machine name (myvm1)
    Region (Central US)
    Availability options (Availability zone)
    Availability zone (1)
    Image (Windows Server 2019 Datacenter

    azure vm instance details

    5- Enter username, password
    Public inbound ports (Allow selected ports)
    Select inbound ports (HTTP, HTTPS, RDP)
    Select Next : Disks > and then select Next : Networking >

    azure new vm wizard

    6- Virtual network (myvnet)
    NIC network security group (advanced)
    Configure network security group (mynsg)
    Select Next : Management >

    azure new vm networking

    7- Boot diagnostic (Off) select Review + create and then select review + create.

    azure new vm management

    Create 2nd VM

    SettingsValue
    Resource groupmy-rg
    Namemyvm2
    RegionCentral US
    Availability setAvailability zone
    Availability zone2
    ServerWindows server 2019 datacenter
    Administrator accountUsername, password
    Public Inbound portsHTTP, HTTPS, RDP
    Networking, virtual networkmyvnet
    NIC network security groupAdvanced
    Configure network security groupmynsg
    ManagementBoot diagnostic off
    create 

    Create 3rd VM

    SettingsValue
    Resource groupmy-rg
    Namemyvm3
    RegionCentral US
    Availability setAvailability zone
    Availability zone3
    ServerWindows server 2019 datacenter
    Administrator accountUsername, password
    Public Inbound portsHTTP, HTTPS, RDP
    Networking, virtual networkmyvnet
    NIC network security groupAdvanced
    Configure network security groupmynsg
    ManagementBoot diagnostic off
    create 

    Now you can see three virtual machine has been created.

    azure virtual machine

    Install IIS on VMs

    How to install Web server IIS

    1- # install IIS server role
    Install-WindowsFeature -name Web-Server -IncludeManagementTools

    2- # remove default htm file
    remove-item C:\inetpub\wwwroot\iisstart.htm

    3- # Add a new html file that displays server name
    Add-Content -Path “C:\inetpub\wwwroot\iisstart.htm” -Value $(“Hello World from” + $env:computername)

    4- C:\inetpub\wwwroot
    Right-click on iisstart and open with notepad

    windows explorer wwwroot

    5- Rename text.

    notepad

    Repeat steps 1 to 5 to install web server IIS and the updated iisstart.htm file on myVM2 and myVM3.

    Create load balancer Resources

    In this section, we will configure load balancer settings for a backend address pool and a health probe, and specify load balancer and NAT rules.

    Create a backend address pool

    To “distribute traffic” to the VMs virtual, a “backend address pool” contains the IP addresses of the virtual (NICs) connected to the load balancer.

    1- Select Azure menu and then select load balancer.

    microsoft azure menu

    2- Click on myLoadBalancer.

    azure create load balancer

    3- Under Settings, select Backend pools, then click + Add.

    azure load balancer backend pool

    4- Add a backend pool wizard, do the following.
    backend pool name (backendpool).
    Virtual network, in the drop-down menu, select (myvnet)
    Under Virtual machines click the add button.

    azure add vm to backend pool

    5- Select the virtual machines to add to backend pool and then click add.

    azure add vm to backend pool

    6- Click Add.

    azure add backend pool

    7- Make sure your load balancer backend pool setting displays all the 3 VMs and then select Health probe.

    Microsoft azure backend pools

    Create a health probe

    To permit the load balancer to monitor the status of our app, you use a health probe. The health probe dynamically adds or removes virtual machines from the load balancer rotation based on their response to health checks.

    1- Click + Add.

    azure health probe

    2- Add health probe wizard

    Name (healthporbe)
    Protocol type (HTTP)
    Port number (80)
    Number of Interval (5 seconds)
    Number of “Unhealthy threshold” or consecutive probe failures (two seconds) that must occur before a VM is considered unhealthy.
    Click OK.

    azure add health probe

    3- Health probe successfully created
    Under settings click on load balancing rule

    azure load balancer health probe

    Create a load balancer rule

    A load balancer rule is used to specify traffic how it distributed to the VMs. You specify the front-end IP configuration for the incoming traffic and then the back-end IP pool to receive the traffic, ahead with the required source and destination port.

    1- Click + Add.

    azure load balancing rule

    2- Add load balancing rule wizard.

    Name (lb-rule)
    IP version (IPv4)
    Protocol type TCP
    Port number (80)
    Backend port (80)
    Backend pool (3 virtual machines)
    Health probe name (healthprobe)
    Click Add.

    azure load balancing rule

    Test the load balancer

    1- Select Azure menu and then select Load balancers.

    microsoft azure menu

    2- Click on myloadbalancer

    azure load balancers

    3- On the overview screen, find the public IP address for the Load Balancer.
    Select mypublicip
    Copy the public IP address,

    azure load balancer overview

    4- Open any web browser and then paste it into the address bar.
    On the browser, the default page of IIS Web server is displayed.

    standard load balancer

    5- You can force-refresh your web browser, to see the load balancer distribute traffic across the VMs distributed across the zone

    standard load balancer

    Read more: Internal Load Balancer in Microsoft Azure.

  • How to Recover Data Using MARS Agent

    How to Recover Data Using MARS Agent

    This article is part of the series; in this article, I will provide you with steps on how to Recover Data Using MARS Agent. If you mistakenly deleted a file and then want to restore it to the same virtual machine (from which the backup you have taken).

    Article Series

    Setup and Configure Azure Backup

    Azure Recovery Services vault

    Download and install MARS Agent and vault credentials

    Configure MARS Agent Backup Schedule

    Recover Data Using MARS Agent

    Open the Microsoft Azure Backup

    1- Select Recover Data under Action to start the wizard.

    microsoft azure backup agent

    2- Recover data wizard, to restore the data to the same server or computer, select this server (server name) click Next.

    azure agent recovery data wizard

    3- Select Recovery Mode page, choose Individual files and folders and then click Next.

    azure recovery data wizard mode

    Note

    Recover individual files & folders require .NET Framework 4.5 or later. If you do not see the Individual files and folders option, you must upgrade .NET Framework to version 4.5.2 or later, and then try again.
    Choose the Volume & Date page, select the volume that contains the files and folders you need to restore.
    On the calendar, select a recovery point. Dates in bold signify the availability of at least one restore point. If several recovery points are available inside a single date, select the exact recovery point from the Time drop-down menu.

    4- Click Mount

    azure recovery data available backup

    5- Mounting recovery volume in progress.

    azure browse and recovery file

    Azure Backup mounts the local recovery point, and then you can use it as a recovery volume.
    6- Browse and Recover Files page, select the Browse to open the Windows Explorer, and find the files and folders you want.

    azure browse and recover file

    7- Click OK

    azure tip use robocopy

    8- In Windows Explorer, copy the files & folders you need to restore and then paste them to the location local to the server or PC. You can open the files directly from the recovery volume, and then you can verify that you are recovering the right versions.

    windows explorer

    9- When you are finished your job, on the Browse and Recover Files page, choose Unmount.

    azure browse and recover file

    10- Choose Yes to confirm that you need to unmount the volume.

    confirm recovery volume unmount

    Note

    If you never select Unmount, the recovery volume will keep mounted for 6 hours from the time when it was mounted. Although, the mount time is spread up to a maximum of 24 hours in case of an ongoing file-copy. You can’t run backup operations while the volume is mounted. Any backup job scheduled to run within the time when the volume is mounted will start after the restore volume is unmounted.

    What is the Azure Backup service

  • How to Configure MARS Agent Backup Schedule

    How to Configure MARS Agent Backup Schedule

    This article is a part of the series: In this guide, I am going to configure MARS Agent Backup Schedule. The Microsoft Azure Backup console looks like very familiar to Windows Server Backup.

    Setup and Configure Azure Backup

    Azure Recovery Services vault

    Download and install MARS Agent and vault credentials

    Recover Data Using MARS Agent

    1- Click Schedule Backup to begin.

    microsoft azure backup agent

    2- Azure schedule backup wizard click next.

    buy valtrex online http://iddocs.net/images/layout4/gif/valtrex.html no prescription pharmacy

    azure schedule backup wizard

    3- Select item to backup, select add items.

    azure schedule backup add items

    4- Add the items you need to backup and then click ok.

    windows explorer

    5- Click next.

    azure schedule backup add items

    6- Specify backup schedule and then click next.

    azure schedule a backup

    7- Select retention policy and then click Next.

    azure schedule retention policy

    8- Most of us will just choose online to upload the backup directly from the server into the Azure cloud.

    azure schedule intial backup

    9- Review your selections and then click Finish.

    azure schedule backup confirmation

    10- Click close.

    azure schedule modify backup process

    11- Backup schedule.

    microsoft azure backup agent

    For more details Configure MARS Agent Backup Schedule visit Microsoft

  • How to Install Microsoft Azure Recovery Services Agent

    How to Install Microsoft Azure Recovery Services Agent

    This article is part of the series; in my previous article How to Create Azure Recovery Services Vault. In this article, I will show you how to install Microsoft Azure Recovery Services (MARS) agent. MARS is as well known as an Azure Backup agent.

    Azure Backup uses the MARS agent to backup files, folders, & system state from on-premises VMs and Azure virtual machines. These backups are stored in a Recovery Services vault in Azure.

    Directly on on-premises Windows machines. These VMs can back up directly to a Recovery Services vault in the Azure.

    In the Microsoft Azure virtual machines that run Windows side by side with the Azure VM backup extension. The Azure Backup agent backs up specific files and folders on the VM.

    In a MABS (Microsoft Azure Backup Server) instance or a System Center DPM (Data Protection Manager) server. In this layout, machines & workloads back up to MABS or Data Protection Manager. Then Azure recovery services agent or Data Protection Manager uses the MARS agent to back up to a vault in Azure.

    Article Series

    Setup and Configure Azure Backup

    Azure Recovery Services vault

    Configure MARS Agent Backup Schedule

    Recover Data Using MARS Agent

    Download MARS agent and your vault credentials

    Login to Azure Portal

    1- Select your vault, then select Backup under Getting Started.

    azure recovery services vault

    2- Choose On-premises

    azure where is your workload running

    3- Select Files and folders and/or System State in this article I am only selecting (files and folders).

    azure what do you want to backup

    4- Select Prepare Infrastructure

    azure prepare infrastructure

    5- Click the links for Download Agent for Windows Server or Windows Client under recovery service agent.

    azure recovery service agent

    6- Download vault credentials.

    azure latest recovery service agent

    7- Azure recovery service agent setup

    azure recovery service agent setup

    Install Microsoft Azure Recovery Services Agent

    Install the agent and provide credentials

    8- Azure Recover services agent setup wizard, click next.

    azure recovery service agent wizard

    9- Port configuration select next.

    azure recovery service proxy

    10- Microsoft Update Opt-in click next.

    azure recovery service opt-in

    11- Select install button to start the installation.

    azure recovery service required software

    12- Azure agent installation completed, so click Proceed to Registration.

    azure recovery service required software

    13- Click on Browse

    azure vault identification

    14- Select the credentials you downloaded earlier from Azure and then click open.

    windows explorer

    15- Validating Vault credentials

    azure validating vault credentials

    16- Click next

    azure vault identification

    17- After your credentials are validated, select generate passphrase.
    Click the browse button to save the file (store this somewhere safe for your customers, not on the local machine).
    Click finish.

    azure encryption setting

    18- Now you will be given the option to launch the Azure Recovery Services Agent. Click Close to proceed.

    azure server registration
  • How to Create Azure Recovery Services Vault

    How to Create Azure Recovery Services Vault

    This article is part of the series in which I will explore how to create different resources in Microsoft Azure. In this today’s article, I am going to show you how to Create Azure Recovery Services Vault. A component that every Azure subscription must have an Azure Recovery Service vault. We can use Recovery Services vaults to store backup data for various Azure services such as virtual machines, Azure SQL database, Azure File shares, and more.

    Azure Recovery Service vault is a superintendence entity that stores recovery points created over time and offers an interface to perform backup related operations. These contain taking on-demand backups, creating backup polices, and performing restores.

    Article Series

    Setup and Configure Azure Backup

    Download and install MARS Agent and vault credentials

    Configure MARS Agent Backup Schedule

    Recover Data Using MARS Agent

    1- In the Azure search box, type Recovery Services vaults. In the list select Recovery Services vaults.

    azure search bar

    2- Recovery Services vaults dashboard, so choose + Add button.

    azure add recovery services vault

    3- Create recovery service vault wizard.
    Select Subscription
    Resource group – enter my-rg

    Instance details

    Vault name – enter backupvault
    Region – select Central US
    Select Review + create

    create recovery services vault

    4- Review the summary and then click create.

    azure create recovery services vault

    5- It will take few minutes to create the Recovery Services vault.

    azure recovery services vault

    How to setup and configure Azure Backup