现在微软已经完全放弃了管理门户上的 GUI 支持,他们要求我安装和设置并使用 Windows Azure PowerShell 来创建新的托管缓存服务。作为没有大量 PowerShell 经验的人。我无法弄清楚如何成功创建新的 azure 托管缓存。有没有人有任何提示?
我做了以下事情:
在 PowerShell 中执行:
Add-AzureAccount
连接到登录到 Azure 帐户
在 PowerShell 中执行:
New-AzureManagedCache -Name test -Location "South Central"
错误是:
New-AzureManagedCache : Value cannot be null.
Parameter name: managementCertificate
At line:1 char:1
+ New-AzureManagedCache -Name test-Location "South Central"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [New-AzureManagedCache], ArgumentNullException
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.ManagedCache.NewAzureManagedCache
我应该怎么做才能解决这个问题并创建一个新的基本缓存 128mb?