03 | Windows Azure PowerShell

Slides:



Advertisements
Similar presentations
Microsoft virtual machine converter
Advertisements

Automating Microsoft Azure with PowerShell MMS Minnesota 2014 Trevor Sullivan and David O’Brien – #MMSMinnesota.
Module Microsoft ® Virtual Academy Active Directory and Migrating Hyper-V with PowerShell 6.
WMU GNL Automation How to make my IT life easier CHRISTOPHER KEYAERT CONSULTANT AT INOVATIV CLOUD AND DATACENTER MANAGEMENT MVP.
System Center 2012 R2 Windows Azure Pack Service Management Automation 101.
Worker Role Web Role Web Role VM Role Control Abstraction (i.e. Less IT & Less Plumbing Code) Admin Web / Worker Role VM Role Web / Worker Role.
Automate Microsoft Azure Ross Sponholtz Mark Ghazai.
Partner Practice Enablement - Overview This session will focus on integration strategies for applications deployed using Microsoft Azure Websites and Microsoft.
Microsoft Azure Introduction ISYS 512. Microsoft Azure Microsoft Azure is a cloud.
Microsoft ® Official Course Module XA Using Windows PowerShell ®
Partner Practice Enablement - Overview This session will focus on integration strategies for applications deployed using Microsoft Azure Websites and Microsoft.
Trevor Sullivan Solution Architect Project Leadership Associates.
An Introduction to HDInsight June 27 th,
Advanced Automation Using Windows PowerShell 3.0 Hemant Mahawar Program Manager Microsoft Corporation Travis Jones Program Manager Microsoft Corporation.
Online Conference June 17 th and 18 th SharePoint Online Administration with PowerShell.
Node.js & Windows Azure AZR326  JavaScript on the Server!  Event driven I/O server-side JavaScript  Not thread based, each connection uses only a.
Module 8 : Configuration II Jong S. Bok
Introduction to Taverna Online and Interaction service Aleksandra Pawlik University of Manchester.
Presented by: Tyler Bithell B2B TECHNOLOGIES | PRESENTATION SharePoint 2013 Restore Rehearsal in Azure.
Windows Azure Fundamentals Services Storage. Table of contents Overview Cloud service basics Managing cloud services Cloud storage basics Table storage.
AZR319: Monitoring and Managing Your Windows Azure Applications and Services Chandrika Shankarnarayan, Senior Program Manager Lead Vikram Desai, Senior.
Microsoft ® Official Course Module 6 Managing Software Distribution and Deployment by Using Packages and Programs.
Microsoft Virtual Academy Module 12 Managing Services with VMM and App Controller.
Level 300 System Center App Controller 2012 Marin Franković, Visoko učilište Algebra.
Before the Session Verify HDInsight Emulator properly installed Verify Visual Studio and NuGet installed on emulator system Verify emulator system has.
AZ PASS User Group Azure Data Factory Overview Josh Sivey, Solution Partner October
Apache Hadoop on Windows Azure Avkash Chauhan
Long Live Azure Automation!Long Live Azure Automation! Cloud-first Configuration Management and Automation Beth Cooper Program Manager.
1/27/2018 5:13 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Deploying Web Application
Data Platform and Analytics Foundational Training
How to download, configure and run a mapReduce program In a cloudera VM Presented By: Mehakdeep Singh Amrit Singh Chaggar Ranjodh Singh.
How to connect your DG to EDGeS? Zoltán Farkas, MTA SZTAKI
Automate Custom Solutions Deployment on Office 365 and Azure
Logo here Module 3 Microsoft Azure Web App. Logo here Module Overview Introduction to App Service Overview of Web Apps Hosting Web Applications in Azure.
Deploying and Configuring SSIS Packages
Exam : Implementing Microsoft Azure Infrastructure Solutions
Azure IaaS 101.
Excel Services Deployment and Administration
Printers.
Build /21/2018 © 2015 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION.
07 | Analyzing Big Data with Excel
How to Pass Your Microsoft Exam with Braindumps - Dumps4download
Get Microsoft Exam PDF Braindumps With Verified Question Answers By Realexamdumps.com
Download dumps - Microsoft Real Exam Questions Dumps4download
Prepare Question Answers Exam Dumps - Dumps4download.us.
Microsoft IT process automation – an unexpected journey
Azure PowerShell Aaron Roney Senior Program Manager Cormac McCarthy
Microsoft Ignite NZ October 2016 SKYCITY, Auckland.
Server & Tools Business
Office 365 Import Service Microsoft Office365 12/3/2018
Managing Services with VMM and App Controller
AD FS Integration Active Directory Federation Services (AD FS) 7.4
Microsoft Ignite /17/2019 6:00 PM
Read-Only Domain Controllers (RODCs)
Microsoft Virtual Academy
Microsoft Azure Managing Users & Resources with Azure Resource Manager
Day 2, Session 2 Connecting System Center to the Public Cloud
Microsoft Virtual Academy
Welcome to Microsoft Azure for Research Training!
Server & Tools Business
04 | Always On High Availability
02 | Getting Started with HDInsight
05 | Processing Big Data with Hive
02 | Getting Started with Azure Websites
04 | Processing Big Data with Pig
Extend Azure DevOps with a Custom PowerShell-based Pipeline Task
06 | SQL Server and the Cloud
02 | Mastering Your Data Graeme Malcolm | Data Technology Specialist, Content Master Pete Harris | Learning Product Planner, Microsoft.
06 | Automating Big Data Processing
Presentation transcript:

03 | Windows Azure PowerShell Graeme Malcolm | Data Technology Specialist, Content Master Pete Harris | Learning Product Planner, Microsoft

Module Overview Windows Azure PowerShell Windows Azure PowerShell Config Running Map/Reduce Jobs

Windows Azure PowerShell Install from Microsoft Web Platform Installer Cmdlets to manage Windows Azure services, including HDInsight,

Windows Azure PowerShell Config Connect PowerShell to Windows Azure Download and import a certificate Use Windows Azure AD Access services in multiple subscriptions Specify subscription in cmdlet parameters Set subscription context Get-AzurePublishSettingsFile Import-AzurePublishSettingsFile "<file_path>" Add-AzureAccount Select-AzureSubscription

Demo: Configuring PowerShell In this demonstration, you will see how to: Configure Windows Azure PowerShell

Uploading Files to Windows Azure Get the Windows Azure Storage key Get-AzureStorageKey Create the Windows Azure Storage context New-AzureStorageContext Upload local files to blobs in Windows Azure Set-AzureStorageBlobContent

Demo: Uploading Files In this demonstration, you will see how to: Upload Source Data to HDFS

Running a Map/Reduce Job Create a job definition New-AzureHDInsightMapReduceJobDefinition Submit the job Start-AzureHDInsightJob View the job execution information Wait-AzureHDInsightJob Get-AzureHDInsightJobOutput

Demo: Running a Map/Reduce Job In this demonstration, you will see how to: Run a Map/Reduce Job in PowerShell

Getting Map/Reduce Output Get the Windows Azure Storage key Get-AzureStorageKey Create the Windows Azure Storage context New-AzureStorageContext Download job output files in Windows Azure to local files Get-AzureStorageBlobContent

Demo: Getting Job Output In this demonstration, you will see how to: View Map/Reduce Job Output in PowerShell

Module Summary Install Windows Azure PowerShell from the Web Platform Connect PowerShell to your Subscription Use PowerShell to: Upload Jars and data Run Map/Reduce jobs Download output files