标签:sdi blog trapper 情况 where 用户 list 配置文件 sof
前面的博文中和大家聊了如何部署微软的最新混合云技术Microsoft Azure Stack,那么既然已经部署了Azure Stack,我们可以考虑创建一个存储帐户(blob或table),启动我们的第一个虚拟机,与租户/计划,或者向现有的Azure Stack市场发布更多的内容。但在进行下一步之前,我们需要我们的MSA环境准备好接受PowerShell连接。我们需要额外的模块和工具来运行针对Azure Stack本地订阅的现有AzureRM命令。invoke-webrequest https://github.com/Azure/AzureStack-Tools/archive/master.zip -OutFile master.zip
expand-archive master.zip -DestinationPath . -Force
cd AzureStack-Tools-master
配置Powershell环境
导入Connect Powershell模块:
注册AzureRM环境(管理环境用户环境二选一):
管理环境:
Add-AzureRMEnvironment -Name "AzureStackAdmin" -ArmEndpoint "https://adminmanagement.local.azurestack.external"
用户环境:
Add-AzureRMEnvironment -Name "AzureStackUser" -ArmEndpoint "https://management.local.azurestack.external"
使用以下PS命令设置GraphEndpointResourceId值:
管理环境:
Set-AzureRmEnvironment -Name "AzureStackAdmin" -GraphAudience "https://graph.windows.net/"
用户环境:
Set-AzureRmEnvironment -Name "AzureStackUser" -GraphAudience "https://graph.windows.net/"
获取用于部署Azure Stack的活动目录租户的GUID值(使用AAD部署)
$TenantID = Get-AzsDirectoryTenantId -AADTenantName "wuyvzhanghotmail.onmicrosoft.com" -EnvironmentName "AzureStackAdmin"
登陆到Azure Stack
管理员:
Login-AzureRmAccount -EnvironmentName "AzureStackAdmin" -TenantId $TenantID
用户:
Login-AzureRmAccount -EnvironmentName "AzureStackUser" -TenantId $TenantID
注册资源提供程序:
登录到管理员或用户门户后, 可以针对在该订阅中注册的资源提供程序发出操作。默认情况下, 所有基础资源提供程序都在默认的提供程序订阅 (管理员订阅) 中注册。在对新创建的用户订阅进行操作时, 如果这些订阅没有通过门户部署任何资源, 则应使用以下命令注册此订阅的资源提供程序
foreach($s in (Get-AzureRmSubscription)) {
Select-AzureRmSubscription -SubscriptionId $s.SubscriptionId | Out-Null
Write-Progress $($s.SubscriptionId + " : " + $s.SubscriptionName)
Get-AzureRmResourceProvider -ListAvailable | Register-AzureRmResourceProvider -Force
}
在Azure上注册Azure Stack:
允许如下PS命令使用Azure注册Azure Stack:
C:\AzureStack-Tools-master\Registration\RegisterWithAzure.ps1 -azureDirectory wuyvzhanghotmail.onmicrosoft.com -azureSubscriptionId e5a2e705-e06f-454e-bbce-41d3bbeb1b9f -azureAccountId mas@wuyvzhanghotmail.onmicrosoft.com
注册完成以后登陆Azure Stack管理端可以看到Azure Stack已经可以调用Azure中的部分资源:
标签:sdi blog trapper 情况 where 用户 list 配置文件 sof
原文地址:http://blog.51cto.com/wuyvzhang/2068084