databricks试用设置失败 [英] databricks trial set up failed deployment

查看:106
本文介绍了databricks试用设置失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在创建azure databrick工作区免费试用版时,我收到以下错误消息:

I received the following error message when creating azure databrick workspace free trial:

\"客户端有权执行操作'Microsoft.Network/范围'/subscriptions/83a63253...c626/resourcegroups/databricks-rg-AH..Workspace-ow54jbhzfy3x6/providers/Microsoft.Network/virtualNetworks/workers-vnet'上的networkSecurityGroups/join/action', 但是,当前租户'2f4a9838..ccc1fdec5953'无权访问链接的预订'83a63253 ..'

\"The client has permission to perform action 'Microsoft.Network/networkSecurityGroups/join/action' on scope '/subscriptions/83a63253...c626/resourcegroups/databricks-rg-AH..Workspace-ow54jbhzfy3x6/providers/Microsoft.Network/virtualNetworks/workers-vnet', however the current tenant '2f4a9838..ccc1fdec5953' is not authorized to access linked subscription '83a63253..'

我尝试针对现成的即付即用的现有资源组创建databrick资源.
我也不明白为什么部署会为我创建一个新的资源组.这个新资源组的内容是一个新的存储帐户和一个安全组-我没有请求这些新资源. -但是这些都是成功创建的 已部署. 我似乎找不到列出的当前租户:    '2f4a9838 ..... ccc1fdec5953'.

I tried to create the databrick resource against an existing resource group that is pay as you go.
I also dont understand why the deployment created a new resource group for me.  The content of this new resource group is a new storage account and a security group - I did not request these new resources.  - however these were successfully created deployed.  
I can not seem to find the current tenant listed:    '2f4a9838.....ccc1fdec5953' .

我在蔚蓝的活动目录中查找-它不显示GUID. (这是一种免费的天蓝色广告)

谢谢.展望未来帮助.

Akthar

推荐答案

是否可以共享创建Azure数据块所遵循的文档?

could you share the document which you are following to create a Azure databricks?

您收到的错误似乎导致目标订阅存在问题.请确保您要注销一个订阅&租户并登录正确的租户.这是简短的解释 将Azure订阅关联或添加到当前Azure AD租户.  

The error which you are getting seems to lead that there is an issue with the destination subscription. Please make sure that you are logging out of one subscription & tenant and logging into the correct one. Here is brief explanation to associate or add an azure subscription to current Azure AD Tenant.  

您可能还必须检查要在天蓝色订阅级别使用的资源提供者,这些资源提供者是否需要在当前租户下注册.

You may also have to check that the resource providers which you want to use at azure subscription level that need to be registered under the current tenant.

 以下是您可以使用的以下代码,它将遍历所有可用的资源提供者并进行注册.您的订阅管理员必须运行这些命令.

 Here’s the below code that you can use that will loop through all of the available resource providers and register them. Your Subscription Admin will have to run these commands.

#login to Azure account

Login-AzureRmAccount

#Getting all Tenants

Get-AzureRmTenant

第二,如果您的帐户下有多个订阅,则需要将当前订阅设置为您想要的订阅:

Second, if you have more than one subscription under your account, then you will want to set the current subscription to be the one you want:

#Shows all of the subscriptions for your account

Get-AzureRmSubscription

#Set the current subscription

Get-AzureRmSubscription -SubscriptionName "your subscription name" | Set-AzureRmContext

所有可用的提供程序名称空间并进行注册.运行时,它将新资源提供者显示为正在注册",并且需要一些时间才能完成.

All of the available provider namespaces and register them. When it runs, it will show the new resource providers as "Registering," and it will take a little time for them to finish.

Get-AzureRmResourceProvider -ListAvailable | Select-Object ProviderNamespace | Foreach-Object { Register-AzureRmResourceProvider -ProviderName


_.ProviderNamespace -Force}
_.ProviderNamespace -Force }

尝试以上建议,让我们知道您是否仍然遇到该问题.

Try the above suggestions and let us know if you are still facing the issue.


这篇关于databricks试用设置失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆