azure-deployment

Azure Service Fabric activation error

只愿长相守 提交于 2019-12-03 05:51:13
问题 The deployment of one of my apps to a Service Fabric Cluster failed and triggered an Unhealthy Evaluation with an error event saying: There was an error during CodePackage activation.The service host terminated with exit code:3762504530 However, on the node where the app is deployed, Health State indicates: The application was activated successfully. Is there any way to get a more detailed report on the error event? 回答1: I usually connect via RDP to the affected node and do the following

Not able to publish website on Windows Azure using publish through VS2010

蹲街弑〆低调 提交于 2019-12-03 04:29:18
I am facing this problem when I try to publish my web application on Windows Azure via Visual Studio 2010. I am trying by right click on project and select publish and importing publish profile downloaded from Windows Azure platform. I am getting this error: Error 1 Web deployment task failed. (Could not connect to the remote computer ("waws-prod-am2-001.publish.azurewebsites.windows.net"). On the remote computer, make sure that Web Deploy is installed and that the required process ("Web Management Service") is started. Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR

TFSPreview.com and Azure continuous deployment for multiple solutions in TFS

岁酱吖の 提交于 2019-12-02 12:09:26
问题 I recently tried out Microsoft's TFS-in-the-cloud service (TFSPreview.com) and felt the TFS team finally 'gets it'. TFSPreview.com might switch us from GIT+bug tracker+powershell as the integrated workflow actually works (continuous deployment is GREAT!). Well, almost. Our "one project" test on TFSPreview.com works great for continuous deployment but our 'real' source controls looks like Root \--Solution1 \--ProjectA(IIS) \--ProjectB(IIS) \--Solution2 \--ProjectC(AzureWebRoleProject) Question

Azure PowerShell: Enable Application Diagnostics and Site Diagnostics

假装没事ソ 提交于 2019-12-01 08:17:34
问题 I am configuring Diagnostics & IIS Logs for Azure Websites. Azure Manage Portal shows options to store Application Diagnostics to Azure Table Storage: And pops up a dialog on clicking 'manage table storage' to provide Azure Table details: Site Diagnostics to Blob Storage: I am searching for Azure Cmdlet to enable these using PowerShell at deployment time. Here is the Cmdlet i could find but it doesnt have any option to provide table details: Enable-AzureWebsiteApplicationDiagnostic C:\PS

Error Creating Webjob schedule

社会主义新天地 提交于 2019-11-30 19:47:56
I have the source code hosted in a TFS 2012 on premise installation. When I try to publish my Azure WebJob to Azure from Visual Studio 2015, I get the following error. Error : An error occurred while creating the WebJob schedule: Response status code does not indicate success: 409 (Conflict). The WebJob does get created under the web application, but it is set to On Demand rather than scheduled. When I open Fiddler to try to troubleshoot this issue, I get the following error. Error ERROR_CONNECTION_TERMINATED: Web deployment task failed. (Web Deploy experienced a connection problem with the

Azure SDK 2.5.1 fails to Publish cloudService

拥有回忆 提交于 2019-11-30 10:32:29
问题 After successfully upgrading my cloud service to the new "Azure SDK for .NET 2.5.1 " I got the following error when trying packaging/publishing. Could not load file or assembly 'Microsoft.WindowsAzure.Packaging, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Windows Azure Tools\2.5\Microsoft.WindowsAzure.targets The related line in the

Static IP address for Role in Windows Azure?

百般思念 提交于 2019-11-30 07:08:28
Does anyone knows if obtaining a static IP address for a Web or Worker Role on Windows Azure is possible (possibly only in private beta)? user1393477 A few years later, Azure now lets you reserve IP addresses for VMs and cloud services (Web and Worker roles). However, it is only accessible from PowerShell for the time being (this will change in the future, apparently). The first five static IP addresses are free. To create an IP you will need to make sure you have the latest version of the Azure PowerShell command-line interface and also have your Azure account linked to Azure PowerShell

Azure Package Not including linked project dll even with copy local set

两盒软妹~` 提交于 2019-11-30 06:39:55
I have an Azure solution with 4 projects in it. (VS2012 on Windows 8, Azure Tools 1.8) Core project with common code Web Role Front End Service Role for servicing data (from SQL Azure DB) Worker Role for scheduled tasks All role projects have a reference to the core project with copy local = true... standard stuff. The web role and the worker role work fine, but my service role keeps getting stuck in the Initializing - Starting - Recycling loop. When I browse to the service I get the 'Could note load file or assembly' FileNotFoundException. Sure enough, RDP to the server and the dll is missing

Azure SDK 2.5.1 fails to Publish cloudService

此生再无相见时 提交于 2019-11-29 20:50:29
After successfully upgrading my cloud service to the new "Azure SDK for .NET 2.5.1 " I got the following error when trying packaging/publishing. Could not load file or assembly 'Microsoft.WindowsAzure.Packaging, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Windows Azure Tools\2.5\Microsoft.WindowsAzure.targets The related line in the "Microsoft.WindowsAzure.targets" config file is 2930 which obviously is related to CSPack. <CSPack

ENOTSUP using Grunt

本小妞迷上赌 提交于 2019-11-29 14:34:01
I'm using Grunt to minify and concatenate files for an AngularJS web application. Our source is on a file share and I'm connecting to it via a mapped drive. Whenever Grunt runs over my source directory, I get an error on one of my concat tasks. The error is "ENOTSUP, operation not supported on socket". If I copy the source, local, Grunt runs, fine. For the sake of our source control, I need Grunt to watch and run over the mapped drive. The concat task uses grunt-contrib-concat. I've tried reinstalling Node and rolling back grunt-contrib-concat to version 0.4.0. That didn't work. Any help/ideas