azure-cloud-services

How would one login to Azure cloud classic service instance?

旧街凉风 提交于 2019-12-12 03:55:35
问题 I have setup a azure cloud classic. Where I have two instances running one is web role and orleans silos. I want to enable trace and I need a means to login into the box and see the logs. Azure portal is not providing the logs I needed. I am following the following link https://docs.microsoft.com/en-us/azure/cloud-services/cloud-services-role-enable-remote-desktop but, in the first step, is to click on the cloud service and click configure but I do not see configure option anywhere. I see

Azure Environment Variables in Python Cloud Service

时光怂恿深爱的人放手 提交于 2019-12-12 03:26:03
问题 I have a Python Cloud Service running on Microsoft Azure which should be using a different Storage Account (for blob storage and queues) when it's running in dev vs. staging vs. production. I'd rather not hard-code the Storage Account credentials, but get them from the environment. Alternatively I would like an environment variable or something that indicates whether I'm in staging or production. When I try print(os.environ) I don't see any azure storage credentials, nor a value that

Wrong version of System.Runtime being packaged

这一生的挚爱 提交于 2019-12-12 03:04:19
问题 We have written a service to be deployed to Azure. This consists of a DLL with a "Worker Role" class, and an Azure Cloud Service project, as shown below: The build steps are: Build the ccproj in "Release" configuration. Run NuGet "spec", then "pack" to get a .nupkg file Deploy the .nupkg file to the Azure Cloud Service This has been working fine for a while, until we upgraded to .NET 4.6.2 and also upgraded several other references, including System.Runtime (now v4.3.1). Now, despite the fact

Continuous Deploy node js cloud service project using Visual Studio Team Services

限于喜欢 提交于 2019-12-12 02:09:45
问题 I currently have an Azure Cloud Service within Visual Studio containing simple Node.js web role. This builds and packages correctly within Visual Studio locally, and deploys perfectly into the Azure cloud service. When trying to build the solution with Visual Studio Team Services (previously Visual Studio Online), MSBuild fails claiming: 2016-07-01T10:09:56.7893397Z ##[error]C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\Windows Azure Tools\2.8\Microsoft.WindowsAzure.targets(1329

Trying to understand load balancing in azure cloud service

限于喜欢 提交于 2019-12-11 23:36:44
问题 I am maintaining a azure cloud service which has 1 web role and few worker roles. The webrole has multiple instances. When I open the cloud service from the resources, I can see the service endpoint and public ip address. I want to understand how is the traffic load balanced in this azure cloud service. I searched for load balancers but I could not find it in the subscription. I was also not able to get the reference of some document which explains load balancing in the cloud service

Retrieve List of networks for a subscription in windows azure with azure java sdk

谁说胖子不能爱 提交于 2019-12-11 18:34:47
问题 How to Retrieve List of networks for a subscription in windows azure with azure sdk? 回答1: There's a test in SDK that does this: https://github.com/Azure/azure-sdk-for-java/blob/master/management-network/src/test/java/com/microsoft/windowsazure/management/network/NetworkOperationsTests.java#L104 来源: https://stackoverflow.com/questions/27059680/retrieve-list-of-networks-for-a-subscription-in-windows-azure-with-azure-java-sd

How to deploy a web app to Azure Cloud Service from a Mac?

本小妞迷上赌 提交于 2019-12-11 17:37:51
问题 I'm brand new to Azure and have been trying to deploy a simple web app to my new Azure Cloud Service - however I only own a Mac. All of the tutorials I've seen from Microsoft say you can go to 'publish' from Visual Studio and select 'Cloud Service', but I only see Azure Websites as an option, presumably because I'm on a Mac. It seems the .NET Azure SDK is only available for Windows, and oddly when I try to install other Azure SDKS (tried node, python) the installer just says 'Could not

Equivalent Azure ARM APIs for ComputeManagementClient operations like create, get, swap

南笙酒味 提交于 2019-12-11 16:12:22
问题 I have to replace the service management API's with Azure ARM and I am finding very difficult to find a proper documentation for the following equivalent Azure ARM API's 1) ComputeManagementClient.Deployments.Create - I found the API to GET deployment by slot with the help of azure resource explorer. https://management.azure.com/subscriptions/{mySubID}/resourceGroups/{myResourcegroup}/providers/Microsoft.ClassicCompute/domainNames/{myCloudService}/slots/Production?api-version=2016-04-01 What

How to get the configuration of CloudService(classic) with Azure ARM API

♀尐吖头ヾ 提交于 2019-12-11 15:29:41
问题 I wanted to get the configuration of CloudService(classic), I did the following 1) Get the Resource ID: Cloudservice->properties->resourceID Resource Id: /subscriptions/{mySubscriptionID}/resourceGroups/{myResourceGroup}/providers/Microsoft.ClassicCompute/domainNames/{myCloudServicename}/ 2) I used this resourceID as follows https://management.azure.com/ subscriptions/{mySubscriptionID}/resourceGroups/{myResourceGroup}/providers/Microsoft.ClassicCompute/domainNames/{myCloudServicename}

install Application Initialization in Azure Web Role hosting multiple web sites

谁都会走 提交于 2019-12-11 12:06:30
问题 i have azure role hosted as cloud service, i am trying to install the application initialization as suggested in below link: http://fabriccontroller.net/blog/posts/iis-8-0-application-initialization-module-in-a-windows-azure-web-role but how will all my sites in this single WebRole will remain warmed up? I have followed up the steps told in above link. But not sure how it will managed with multiple websites in single role. 来源: https://stackoverflow.com/questions/22374886/install-application