Skip to content

Latest commit

 

History

History
62 lines (37 loc) · 1.83 KB

00.SetupEnv.md

File metadata and controls

62 lines (37 loc) · 1.83 KB

Lab 00. Create hands on lab environment

Architecture

Using Azure Cloud Shell and Azure Cli script you can create a lab environment fast and easy. In this lab, use Azure Cli script to set up Hands-on Lab environment.

arch00

1. Create Hands-on Lab envrironment using a script

  1. Open browser and go to Azure Portal

  2. Click on new Dashboard

    new dashboard

  3. Type name of the dashboard as Azure Workshop

    new dashboard

  4. Open cloud shell from the browser

    cloudshell

  5. Download a script

    Run following commnad from the cloud shell prompt

    Please copy below command and past it to cloud shell prompt

    1. Data Engineering
    wget -O azlab.azcli https://raw.githubusercontent.com/xlegend1024/az-cloudscale-adv-analytics/master/script/00.azlab_DE.azcli
    
    1. Data Science
    wget -O azlab.azcli https://raw.githubusercontent.com/xlegend1024/az-cloudscale-adv-analytics/master/script/00.azlab_DS.azcli
    
  6. Run command to create a resource group and resource

    Care with subscription name when you run the script

    bash ./azlab.azcli

    run script

    Make sure you use correct Azure Subscription for the Hands-on lab.

  7. Make sure you have a resource group and Azure Key Vault, Blob, SQLDB in the resource group

    resources

    If you have 4 services in your resource group you can proceed next step.


Next > 01. Ingest Data


Main