博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PowerShell管理Azure
阅读量:6679 次
发布时间:2019-06-25

本文共 1023 字,大约阅读时间需要 3 分钟。

PowerShell第一次连接Azure

1.下载Azure SDK,安装azure powershell
http://azure.microsoft.com/zh-cn/downloads/?rnd=1
2.下载azure公共设置文件(下载中国版即可,此文件包含一个编码的管理证书。该证书将作为管理你的订阅和相关服务的各个方面的凭据。请将此文件存储在一个安全位置或在使用后将其删除。)
Get-AzurePublishSettingsFile -Environment "AzureChinaCloud"(中国版)、Get-AzurePublishSettingsFile -Environment "AzureCloud"(国际版)
3.导入上一步下载的azure公共设置文件,设置完成
Import-AzurePublishSettingsFile "<file location>"
4.查看azure上的虚机
get-azurevm

 

1.选择当前使用中的订阅

Get-AzureSubscription | ? {$_.isDefault -eq $true}|Select-AzureSubscription
2.选择StorageAccount
$SAccount = Get-AzureStorageAccount| ? {$_.label -eq "pic"}
3.选择StorageKey
$skey = (Get-AzureStorageKey -StorageAccountName "pic").primary
4.
$dcontext = New-AzureStorageContext -StorageAccountName "pic" -StorageAccountKey $skey
5.
Get-AzureStorageContainer -Context $dContext

 

#获取证书
$subscription = Get-AzureSubscription -ExtendedDetails | ? {$_.IsDefault -eq $true}
$cert = $subscription.certificate
$sid = $subscription.SubscriptionId

转载于:https://www.cnblogs.com/dreamer-fish/p/4670270.html

你可能感兴趣的文章
Unity中那些事半功倍的好插件
查看>>
最全的Markdown语法
查看>>
npm i 的几种方式区别
查看>>
Eclipse界面简介
查看>>
iOS5中的UUID
查看>>
(转载)XML Tutorial for iOS: How To Read and Write XML Documents with GDataXML
查看>>
指定的网络文件夹目前是以其他用户名和密码进行映射的。要用其他用户名和密码进行连接,首先请断开所有现有的连接到网络共享的映射...
查看>>
poj 3259 Wormholes
查看>>
Apache CXFjar包目录(转)
查看>>
NewCoder_13_E 通知小弟[缩点]
查看>>
Elasticsearch 空值过滤
查看>>
spring、springboot、springcloud的区别
查看>>
ActiveMQ入门实例
查看>>
POJ1797 Heavy Transportation
查看>>
MySQL查看和修改表的存储引擎
查看>>
py学习之道
查看>>
vs2015 + opencv3.4.0 + qt msvc2015_64-5.7.1 视屏显示
查看>>
关于——GCD
查看>>
2017-3-2 智慧吉首调研工作
查看>>
求解,一道嵌入式公司面试题
查看>>