Como faço para assinar o Provedores de Recursos e Registrar no Microsof Fabric e depois dar o comando no terminal ?

trocmannj-9858 0 Reputation points
2025-01-16T21:11:10.3166667+00:00

Não consigo fazer a assinatura no Microsoft Fabric através do Azure CLI , onde deveria obter um terminal para digitar "az provider register --namespace Microsoft.Fabric" e no Azure PowerShell e comentar:"Register-AzResourceProvider -ProviderNamespace Microsoft.Fabric" , pa depois conseguir usar o serviços do Azure Service Fabric sem problemas! Como devo proceder?

isto foi gerado pelo Copilot a pergunta:"Essa mensagem significa que o provedor de recursos do Azure Service Fabric, identificado como Microsoft.Fabric, precisa ser registrado na sua assinatura do Azure antes que você possa usar os recursos relacionados a ele."

resposta perseguida

Desculpe pela pergunta idiota mas é o que sou no momento...

laura trchmnn

Obrigada..

Azure Service Fabric
Azure Service Fabric
An Azure service that is used to develop microservices and orchestrate containers on Windows and Linux.
275 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Mounika Reddy Anumandla 2,090 Reputation points Microsoft Vendor
    2025-01-17T06:19:11.39+00:00

    Hi trocmannj-9858,
    Before you use a resource provider, you must make sure your Azure subscription is registered for the resource provider. Registration configures your subscription to work with the resource provider. Some resource providers are registered by default. For a list of resource providers registered by default, see Resource providers for Azure services.
    Please go through the document to register through portal: https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/resource-providers-and-types.

    User's image

    You can get a terminal to execute the commands in the following places:

    1.Azure Cloud Shell (most convenient):

    Azure Cloud Shell is an online terminal provided by Microsoft within the Azure portal, where you can run both Azure CLI and Azure PowerShell commands without needing to install anything locally.

    How to access Azure Cloud Shell:

    • Go to the Azure Portal.
    • At the top-right corner of the portal, click the Cloud Shell icon (a terminal/command prompt icon).
    • Choose Bash for Azure CLI or PowerShell for Azure PowerShell.

    This gives you a terminal directly in your browser where you can run the az provider register or Register-AzResourceProvider commands.
    User's image

    2.If you have the Local Azure CLI installed on your machine, you can open a terminal (like Command Prompt on Windows, or a terminal on macOS/Linux), and then run:
    az provider register --namespace Microsoft.Fabric

    3.If you have Local Azure PowerShell installed on your local machine, you can open PowerShell and run the command:
    Register-AzResourceProvider -ProviderNamespace Microsoft.Fabric

    Hope this helps!

    Let me know if you have any further queries!

    If the answer is helpful, please consider to "accept answer".

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.