Share via

How to identify unregistered service provider?

Bill Carmichael 0 Reputation points
2024-10-01T18:47:10.6666667+00:00

I am working through the self-directed "Microsoft Azure AI Fundamentals" course on Microsoft Learn. In the unit titled "Fundamentals of Machine Learning" there is an exercise titled "Explore Automated Machine Learning in Azure Machine Learning". In the section labelled "Deploy and test the model", I'm encountering an error that says:

"Resource provider [N/A] isn't registered with Subscription [N/A]. Please see troubleshooting guide, available here: https://aka.ms/register-resource-provider (Code: SubscriptionNotRegistered)"

How can I tell which service provider needs to be registered with the description is given as "N/A"? The machine learning provider is already registered.

Azure Machine Learning

3 answers

Sort by: Most helpful
  1. YutongTie-9091 54,021 Reputation points Moderator
    2024-10-02T18:05:47.1633333+00:00

    Hello @Bill

    Thanks for reaching out to us, could you please check if your Microsoft.cdn and Microsoft.PolicyInsights have been added as below? Step by step guidance is here for your reference - https://learn.microsoft.com/en-us/azure/azure-resource-manager/troubleshooting/error-register-resource-provider?tabs=azure-portal

    Screenshot of the Azure portal resource providers list, showing a specific provider selected and the 'Register' button highlighted.

    I hope it helps.

    Regards,

    Yutong

    -Please kindly accept the answer if you feel helpful to support the community, thanks a lot.

    1 person found this answer helpful.
    0 comments No comments

  2. Rishi Aggarwal 0 Reputation points
    2025-04-22T22:56:01.5566667+00:00

    I have done all of this and still get this issue. It really isn't a great look for the student challenge, where you're expected to deal with this kind of nonsense. Half a day wasted for what is specified as a '35 minute' task.

    0 comments No comments

  3. Amira Bedhiafi 41,131 Reputation points Volunteer Moderator
    2024-10-02T20:30:00.01+00:00
    1. Check the Activity Log:
      • Go to the Azure Portal.
      • Navigate to the Activity Log in your subscription.
      • Look for the failed deployment or operation that generated the error. The log might provide more details about which resource or provider triggered the issue.
    2. Review Subscription Resource Providers:
      • Go to the Azure Portal.
      • In the search bar, type "Resource Providers".
      • Select your subscription from the list, and it will show all the registered and unregistered resource providers.
      • Look for any unregistered resource providers related to the type of operation you’re trying to perform (model deployment, storage, compute....). The unregistered provider will usually have a status of "NotRegistered."
    3. Manually Register Resource Providers:
      • If you identify a resource provider that is not registered, select it and click "Register".
      • Common resource providers for Azure Machine Learning include:
        • Microsoft.MachineLearningServices
        • Microsoft.Storage
        • Microsoft.Compute
        • Microsoft.ContainerRegistry
    4. Check the Azure CLI or PowerShell (Optional):
      • You can also use Azure CLI or PowerShell to check for unregistered resource providers. For Azure CLI, run the following command:
             
             az provider list --query "[?registrationState=='NotRegistered']"
             
        

Your answer

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