还原Azure Service Fabric备份

时间:2016-05-20 09:32:08

标签: c# backup azure-service-fabric

我一直在使用https://github.com/Azure-Samples/service-fabric-dotnet-web-reference-app中的代码为我们当前的项目创建备份,但我无法使用power shell脚本调用数据丢失方法来触发恢复。

有没有人有这方面的经验或有另一种创建备份和恢复它们的方法?

1 个答案:

答案 0 :(得分:0)

您遇到的问题是什么?

特定CmdLet is here的文档。

您需要Azure Powershell Cmdlets

有关如何安装Azure Cmdlet is here的指南。

您还需要登录Azure并确保指向正确的租赁。下面是一些有助于此的代码。提供有关您收到的错误的更多详细信息,这将有助于人们提供更具体的答案。

# To login to Azure Resource Manager
Login-AzureRmAccount

# You can also use a specific Tenant if you would like a faster login experience
# Login-AzureRmAccount -TenantId xxxx

# To view all subscriptions for your account
Get-AzureRmSubscription

# To select a default subscription for your current session
Get-AzureRmSubscription –SubscriptionName “Free Trial” | Select-AzureRmSubscription

# View your current Azure PowerShell session context
# This session state is only applicable to the current session and will not affect other sessions
Get-AzureRmContext