azureportal

Logging in to Azure AD B2C Portal with social identity

主宰稳场 提交于 2020-01-06 06:18:28
问题 When people create a local account with user name, email, password and etc., they can log in to the Azure AD B2C Portal via username@tenant.onmicrosoft.com. Then is it possible to let them log in to the portal via social identity provided by Facebook or other external services? I don't feel it's viable though. 回答1: No it is not. Azure Portal uses "regular" Azure AD as its identity provider. Thus it will not redirect the user to login with their identity provider. You can only login using

Logging in to Azure AD B2C Portal with social identity

♀尐吖头ヾ 提交于 2020-01-06 06:18:06
问题 When people create a local account with user name, email, password and etc., they can log in to the Azure AD B2C Portal via username@tenant.onmicrosoft.com. Then is it possible to let them log in to the portal via social identity provided by Facebook or other external services? I don't feel it's viable though. 回答1: No it is not. Azure Portal uses "regular" Azure AD as its identity provider. Thus it will not redirect the user to login with their identity provider. You can only login using

How to retrieve bytes data from request body in Azure Function App

依然范特西╮ 提交于 2020-01-04 05:57:47
问题 In Python, I converted an image into bytes. Then, I pass the bytes to an Azure HTTP Trigger function app endpoint URL (Azure Portal) like this, just like usual when calling Azure cognitive services. image_path = r"C:\Users\User\Desktop\bicycle.jpg" image_data = open(image_path, "rb").read() print(len(image_data)) # print length to compare later url = "https://xxxx.azurewebsites.net/api/HTTPTrigger1........." headers = {'Content-Type': 'application/octet-stream'} response = requests.post(url,

How to retrieve bytes data from request body in Azure Function App

坚强是说给别人听的谎言 提交于 2020-01-04 05:57:16
问题 In Python, I converted an image into bytes. Then, I pass the bytes to an Azure HTTP Trigger function app endpoint URL (Azure Portal) like this, just like usual when calling Azure cognitive services. image_path = r"C:\Users\User\Desktop\bicycle.jpg" image_data = open(image_path, "rb").read() print(len(image_data)) # print length to compare later url = "https://xxxx.azurewebsites.net/api/HTTPTrigger1........." headers = {'Content-Type': 'application/octet-stream'} response = requests.post(url,

Monitor free disk space on Azure VM

让人想犯罪 __ 提交于 2020-01-01 08:34:26
问题 Is there some way how to monitor free disk space from the Azure Portal? I know that there are all kinds of diagnostics for I/O, memory, network, CPU, .NET, SQL, ASP.NET, IIS, etc. But is there some way to see how much free space there's on a disk attached to the VM? All I found was this third-party solution: http://cloudmonix.com/blog/how-to-monitor-free-disk-space-on-azure-vms/ But there should be some way how to see a basic metric like disk space without needing third-party SW, right? 回答1:

How to create a shared access signature with a stored access policy for an Azure Blob container in Azure Portal?

淺唱寂寞╮ 提交于 2020-01-01 02:31:06
问题 I read about shared access signatures generated with stored access policies for Azure Storage from here. I also read how to create this shared access signature with stored access policies for Azure Storage using PowerShell here. However, I want to do the above using Azure Portal. I know how to generate an ad-hoc shared access signature. I also know how to create a stored access policy for a container in my Azure Blob. How do I create a shared access signature with a stored access policy for

How can I register in Azure ML Service a machine learning model trained locally?

↘锁芯ラ 提交于 2019-12-31 07:39:31
问题 I am trying out Azure Machine Learning Service for ML deployment. I have already trained a model on a compute VM and saved it as pickle, and now would like to deploy it (I am using Python on Azure notebooks for the purpose as of now). From the guide, it looks like I need to I need a run object to be existing in my session to execute the "model registration" step: # register model model = run.register_model(model_name='my_model', model_path='outputs/my_model.pkl') print(model.name, model.id,

Private endpoint in Azure

走远了吗. 提交于 2019-12-24 15:30:41
问题 I'm trying to create sql database with private endpoint (preview enabled). I'm getting following error: {"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details.","details":[{"code":"BadRequest","message":"{\r\n \"error\": {\r\n \"code\": \"PrivateEndpointCannotBeCreatedInSubnetThatHasNetworkPoliciesEnabled\",\r\n \"message\": \"Private endpoint /subscriptions

Is it possible to create clone/image from a resource manager based Azure VM?

大兔子大兔子 提交于 2019-12-23 19:40:30
问题 I have a working resource manager based VM. (Ubuntu) Now I customized it in several way, and would like to have it as a start template in the future when creating new VMs. Basically I would like to as easily create a new VM from my customized VM as I created it from initially via Azure portal by picking a LAMP VM by bitnami. Please note, I am aware the Linux/Windows provisioning/deprovisioning process. In fact I can accept and use scenario where the machine was not deprovisioned and simply

Azure portal application settings: “Failed to load settings” (ReadOnlyDisabledSubscription)

老子叫甜甜 提交于 2019-12-23 12:48:08
问题 In the Azure portal I select my web app and then "Application settings" and it shows this: An error message, "Failed to load settings", for application settings and also for connection strings. How do I fix this? Additional information: Another user with the same privileges than me is also experiencing this issue when going to the same Application settings page. Also I'm able to deploy so I have the privilege to modify web.config Additional information #2: So I used Chrome Inspector as