简体   繁体   English

在 Azure App Service 上部署多个 web 应用程序.. 这有什么影响吗

[英]Deploying multiple web Apps on Azure App Service.. Is there any implications of this

I have a client coming on board to Azure from other cloud service provider.我有一个客户从其他云服务提供商那里加入 Azure。 They would like to host up to 10 web apps on Azure and cost is really an issue for them.他们希望在 Azure 上最多托管 10 个 web 应用程序,而成本对他们来说确实是个问题。 Normally I'm suppose to create VM's that would host each of these web Apps;通常我想创建虚拟机来托管这些 web 应用程序中的每一个; but they can't afford the price.但他们负担不起这个价格。 Hence the choice of deploying all of them on the same Azure App service plan.因此选择将它们全部部署在同一个 Azure App 服务计划上。 I think Azure App service offers only 50gb storage.我认为 Azure 应用服务仅提供 50GB 存储空间。 The 10 Web Apps would require storage capacity far more than 50gb; 10 个 Web 应用程序需要的存储容量远远超过 50GB; is it scalable or can we link each of these Apps to an Azure storage account.它是可扩展的,还是我们可以将这些应用程序中的每一个链接到 Azure 存储帐户。 And also is there any implications for deploying multiple web Apps on an Azure App Service plan在 Azure 应用程序服务计划上部署多个 web 应用程序是否有任何影响

An App Service Plan is capable to run multiple Web Apps, each in its own sandbox.应用服务计划能够运行多个 Web 应用,每个应用都在自己的沙箱中。 It's like a VM but as a PaaS service.它就像一个虚拟机,但却是一个 PaaS 服务。 Note that the storage included in the plan will be shared across all Web Apps so you'll have to use Azure Storage if you want to store more data.请注意,计划中包含的存储将在所有 Web 应用程序之间共享,因此如果您想存储更多数据,则必须使用 Azure 存储。

An App Service Plan is designed to handle multiple web apps/Function apps, use BLOB Storage or similar for your data it will scale to whatever you need, depending on your needs you can add further services like Azure Front Door to load balance multiple apps on multiple app service plans应用程序服务计划旨在处理多个 web 应用程序/功能应用程序,使用 BLOB 存储或类似方式存储您的数据,它将扩展到您需要的任何内容,根据您的需要,您可以添加进一步的服务,例如 Azure 前门来负载平衡多个应用程序多个应用服务计划

One important thing to remember is that the app service plan has limitations with outbound connections so even if each of your webapps are not so busy the sum of them all might bring you over the limit so be very careful how you handle your outbound connections.需要记住的重要一点是,应用服务计划对出站连接有限制,因此即使您的每个 Web 应用程序不是那么忙,它们的总和也可能使您超出限制,因此请非常小心处理出站连接的方式。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在Azure Web应用程序站点上使用msnodesql部署节点应用程序失败 - Deploying a node app using msnodesql fails on azure Web apps site 使用Powershell错误部署Azure App Service(Web App) - Deploying Azure App Service (Web App) using powershell error Azure Web App - 多个应用程序托管 - Azure Web App - Multiple apps hosting 将 Mkdocs 部署到 Azure web 应用 - Deploying Mkdocs to Azure web apps 在 Azure Web 应用服务中部署 Angular 通用应用 - 基于 Linux - Deploying an Angular Universal App in Azure web app service - Linux based 您能否拥有多个免费 Azure 应用服务计划以拥有超过 10 个免费 web 应用? - Can you have multiple Free Azure App Service Plans to have more than 10 free web apps? 在 Azure 上部署 React - django 应用 web 应用 - Deploying React - django apps on Azure web apps 将 .net core 3.1 Web 应用部署到 Azure Linux 应用服务 - Deploying .net core 3.1 web app to Azure Linux App Service 在Azure Web App服务中部署wwwroot之外的PHP文件 - Deploying PHP files outside of wwwroot in Azure Web App service 将多个Web应用程序添加到App Service Environment - Add Multiple Web Apps to App Service Environment
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM