现在Microsoft已经完全放弃了管理门户上的GUI支持,他们要求我安装和设置并使用Windows Azure PowerShell来创建新的托管缓存服务。作为一个没有大量PowerShell经验的人。我无法弄清楚如何成功创建一个新的天蓝色托管缓存。有人有任何提示吗?
我做了以下事情:
在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?
答案 0 :(得分:0)
我想出来了 - 我需要
GET-azurepublishsettingsfile
然后
import-azurepublishsettignsfile“c:\ filename.publishsettings”
然后它似乎正在创建它
答案 1 :(得分:0)
使用明确的sku参数:
New-AzureManagedCache -Name test -Location "South Central" -Sku Basic -Memory 128MB