powershell - how do I create a new azure management cache? -
now microsoft has dropped gui support on management portal, requiring me install , setup , use windows azure powershell create new managed cache service. not ton of powershell experience. cannot figure out how create new azure managed cache. have tips?
i did following:
executed in powershell:
add-azureaccount
connected login azure account
executed in powershell:
new-azuremanagedcache -name test -location "south central"
and error is:
new-azuremanagedcache : value cannot null. parameter name: managementcertificate @ line:1 char:1 + new-azuremanagedcache -name test-location "south central" + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + categoryinfo : closeerror: (:) [new-azuremanagedcache], argumentnullexception + fullyqualifiederrorid : microsoft.azure.commands.managedcache.newazuremanagedcache
what should fix issue , new basic cache 128mb created?
i figured out - needed
get-azurepublishsettingsfile
and then
import-azurepublishsettignsfile "c:\filename.publishsettings"
and appears creating now
Comments
Post a Comment