Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

manage.windowsazure.com vs. portal.azure.com

Tags:

azure

What is the difference between these two portals and why? And when should I use which of them?

For example: When I want to configure if/which Java version I want to use in a WebApp, in the "manage"-portal I only can choose between off and v1.7.0_51. In the "portal"-portal I can choose between off, v7 and v8.
Or, if I want to create a new Ubuntu-VM, in the "manage"-portal I can choose between v12.04, v14.04 and v15.04. In the "portal"-portal there is only v14.04.

like image 244
Munchkin Avatar asked Oct 02 '15 07:10

Munchkin


People also ask

What is the URL for Azure portal?

Sign in to the Microsoft Azure portal (https://portal.azure.com/).

What is Azure portal app?

Build, manage, and monitor everything from simple web apps to complex cloud applications in a single, unified console.

How do I access Azure Management Portal?

You can access Azure Management Portal by visiting https://portal. Azure.com.

What is required to do any work in Azure portal?

First things first, one needs a free tier account or a paid account with Azure. All one needs to do is go to the link 'portal.azure.com'. Put in your details. And Azure offers you free services or credits that can be used for one month duration.


2 Answers

As commented by Mike, manage.windowsazure.com is the current production Azure Portal while portal.azure.com is the preview portal which will eventually replace the production portal.

From an underlying technology perspective, there's one big difference between the production and preview portal. Production portal makes use of Azure Service Management API while the Preview portal makes use of Azure Resource Manager (ARM). Along with ARM API, you get Role-based access control (RBAC) that enables you to grant granular permissions on your Azure resources to your team members. In the production portal, there's only a concept of Subscription Administrator and Subscription Co-Administrator.

Not all services in Azure has been ported to make use of ARM API as of today and that's why you see only few services in the preview portal. Services that make use of ARM API (all the new services) will only show up the preview portal.

As to when to use what portal, just see the Azure services you need to manage. Based on how they can be managed, you will choose between production and preview portal. Also please note that functionality for a service may differ between portals even though it is present in both portals. That may be another criteria between choosing the portal.

like image 154
Gaurav Mantri Avatar answered Oct 03 '22 15:10

Gaurav Mantri


enter image description here

enter image description here

More information Can be find from microsoft site Azure Resource Manager vs. classic deployment: Understand deployment models and the state of your resources

like image 44
MAFAIZ Avatar answered Oct 03 '22 14:10

MAFAIZ