我正在尝试使用 Azure Powershell 创建 Azure 托管缓存,因为在管理 GUI 中创建它的功能已被删除。
使用 Add-AzureAccount 我可以使用我常用的凭据登录 Azure。一旦我发出创建缓存的命令:
New-AzureManagedCache -Name mycachename -Location "North Europe" -Sku Basic -Memory 128MB
...我立即得到错误:
New-AzureManagedCache : Your Windows Azure credential in the Windows PowerShell session has expired. Please use Add-AzureAccount to login again.
At line:1 char:1
+ New-AzureManagedCache -Name mycachename -Location "North Europe" -Sku Basic -Memory 128MB
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [New-AzureManagedCache], AadAuthenticationCantRenewException
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.ManagedCache.NewAzureManagedCache
如果我再次登录,我会遇到同样的错误并且会绕圈子。
这是使用没有 Azure 技术支持的免费试用版,因此我们非常感谢您收到任何建议。Azure 服务状态显示一切正常。