英文:
In order to create this CDN profile, please ensure that Microsoft.CDN is listed as a registered Resource Provider in your Azure subscription
问题
我正在尝试创建一个前端门CDN配置文件,但我遇到了以下错误:
为了创建这个CDN配置文件,请确保Microsoft.CDN已在您的Azure订阅中列为已注册的资源提供程序
但我看到我的CDN已经注册了。但我仍然遇到错误。
有什么想法吗?
英文:
I am trying to create a front door CDN profile, but I get the following error:
In order to create this CDN profile, please ensure that Microsoft.CDN is listed as a registered Resource Provider in your Azure subscription
But I see my cdn is registered. But i do still get the error.
any ideas?
答案1
得分: 2
我遇到了相同的问题,Microsoft.Cdn
已经注册了。我所做的是选择 Microsoft.Cdn
,然后点击 重新注册。这对我有效。
英文:
I had the same problem, Microsoft.Cdn
was already registered. What I did is I selected Microsoft.Cdn
and clicked on Re-register. This worked for me.
答案2
得分: 0
请检查并确认是否已通过运行以下的PowerShell命令来为您的订阅注册Microsoft.CDN资源提供程序。
Connect-AzAccount
Select-AzSubscription -SubscriptionId 'XXXX-XXXX-XXXX-XXXX'
# 用于检查提供程序是否已注册的PS命令
Get-AzResourceProvider -ProviderNamespace Microsoft.CDN
# 如果尚未注册,请运行以下命令注册资源提供程序
Register-AzResourceProvider -ProviderNamespace Microsoft.CDN
英文:
Please check and confirm if the Microsoft.CDN resource provider is indeed registered for your subscription by running the below PS cmdlet.
Connect-AzAccount
Select-AzSubscription -SubscriptionId 'XXXX-XXXX-XXXX-XXXX'
# PS cmdlet to check if the provider is registered
Get-AzResourceProvider -ProviderNamespace Microsoft.CDN
# If it is not registered, Run the below command to register the Resource Provider
Register-AzResourceProvider -ProviderNamespace Microsoft.CDN
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论