NoobDeveloper
NoobDeveloper

Reputation: 1887

How to increase Maximum Worker Process in Azure Websites?

I have a asp.net MVC 5 application hosted on Windows Azure websites. Previously it was hosted in a VPS (SoftSys hosting) and i had set up Maximum Worker Process for application pool to 2.

How do i set it in Azure website ?

I am using Basic B1 Azure Website hosting plan.

Upvotes: 2

Views: 1808

Answers (2)

sundar
sundar

Reputation: 414

Maybe the following command help? Set-AzureWebsite -name "websitename" -Slot "slot-name" -NumberOfWorkers 2

The above works and maximum is 3 for Basic plan. Tested it today.

Upvotes: 0

haim770
haim770

Reputation: 49095

This level of fine-tuning is beyond the scope of an Azure Website. You'll have to opt for a WebRole and use startup script (or equivalent methods).

For an updated list of allowed Web.Config overrides, see:

http://azure.microsoft.com/blog/2014/01/28/more-to-explore-configuration-options-unlocked-in-windows-azure-web-sites/

Upvotes: 0

Related Questions