Azure:将应用服务移动到另一个现有的应用服务计划
Azure: Moving an App Service to another existing App Service Plan
我正在尝试将应用服务从一个服务计划转移到另一个服务计划。当我使用门户执行此操作时,未显示其他应用服务计划。
两个应用服务都在同一个位置和资源组中。
这两个 App Services 计划位于同一位置并且具有相同的定价层。
我为网络应用程序使用 "Change App Service Plan" 选项。显示的唯一应用服务计划是当前计划。还有一个 "Create New" 选项。
所以,总结一下:
1) 为什么无法选择其他应用服务计划。
2) 如何将 App Service (Web App) 移动到其他 App Service Plan。
当您尝试更改应用服务计划时看不到其他应用服务计划的原因是当前限制 移动 Azure Web 应用资源.
您打算将您的 Web 应用程序移动到的另一个应用程序服务计划位于另一个具有现有 Azure Web 应用程序的资源组中,当前不受支持
Azure Web Apps current move limitations updated 01/04/2016
希望这能回答您的问题。
不确定是不是最近的事情,但似乎终于有可能了。该选项在主资源菜单中显示为 "Change App Service plan"。参见:
我能够将应用服务(网站)及其部署槽移动到不同的计划(具有相同的参数和位置 - 但如果这是一个要求,我没有尝试)。
是的,我们现在可以使用更改应用服务计划移动应用服务计划。
但有时您会找不到应用程序服务计划,因为这是移动应用程序服务计划的已知限制。
限制
- 只有当新计划在相同的资源组和地理位置时,我们才能移动应用程序服务计划。- 这两个条件是为了保证新计划在同一个webspace
网络空间
Azure deploys each new App Service plan into a deployment unit, internally called a webspace. Each region can have many webspaces, but your app can only move between plans that are created in the same webspace. An App Service Environment is an isolated webspace, so apps can be moved between plans in the same App Service Environment, but not between plans in different App Service Environments.
You can’t specify the webspace you want when creating a plan, but it’s possible to ensure that a plan is created in the same webspace as an existing plan. In brief, all plans created with the same resource group and region combination are deployed into the same webspace. For example, if you created a plan in resource group A and region B, then any plan you subsequently create in resource group A and region B is deployed into the same webspace. Note that plans can’t move webspaces after they’re created, so you can’t move a plan into “the same webspace” as another plan by moving it to another resource group.
你也可以参考这个
您可以在新应用服务计划下的新应用服务上配置备份和恢复。
将您的代码放入 DevOps 并将其部署到新的服务计划并指向 DNS。
谢谢你的提示
我找到了解决方法。您可以将应用服务计划移动到同一个资源组,然后您可以将应用从一个计划移动到另一个计划。
先移动资源会做一个检查,然后你可以审查,最后移动。
我正在尝试将应用服务从一个服务计划转移到另一个服务计划。当我使用门户执行此操作时,未显示其他应用服务计划。
两个应用服务都在同一个位置和资源组中。 这两个 App Services 计划位于同一位置并且具有相同的定价层。
我为网络应用程序使用 "Change App Service Plan" 选项。显示的唯一应用服务计划是当前计划。还有一个 "Create New" 选项。
所以,总结一下: 1) 为什么无法选择其他应用服务计划。 2) 如何将 App Service (Web App) 移动到其他 App Service Plan。
当您尝试更改应用服务计划时看不到其他应用服务计划的原因是当前限制 移动 Azure Web 应用资源.
您打算将您的 Web 应用程序移动到的另一个应用程序服务计划位于另一个具有现有 Azure Web 应用程序的资源组中,当前不受支持
Azure Web Apps current move limitations updated 01/04/2016
希望这能回答您的问题。
不确定是不是最近的事情,但似乎终于有可能了。该选项在主资源菜单中显示为 "Change App Service plan"。参见:
我能够将应用服务(网站)及其部署槽移动到不同的计划(具有相同的参数和位置 - 但如果这是一个要求,我没有尝试)。
是的,我们现在可以使用更改应用服务计划移动应用服务计划。
但有时您会找不到应用程序服务计划,因为这是移动应用程序服务计划的已知限制。
限制
- 只有当新计划在相同的资源组和地理位置时,我们才能移动应用程序服务计划。- 这两个条件是为了保证新计划在同一个webspace
Azure deploys each new App Service plan into a deployment unit, internally called a webspace. Each region can have many webspaces, but your app can only move between plans that are created in the same webspace. An App Service Environment is an isolated webspace, so apps can be moved between plans in the same App Service Environment, but not between plans in different App Service Environments.
You can’t specify the webspace you want when creating a plan, but it’s possible to ensure that a plan is created in the same webspace as an existing plan. In brief, all plans created with the same resource group and region combination are deployed into the same webspace. For example, if you created a plan in resource group A and region B, then any plan you subsequently create in resource group A and region B is deployed into the same webspace. Note that plans can’t move webspaces after they’re created, so you can’t move a plan into “the same webspace” as another plan by moving it to another resource group.
你也可以参考这个
您可以在新应用服务计划下的新应用服务上配置备份和恢复。
将您的代码放入 DevOps 并将其部署到新的服务计划并指向 DNS。
谢谢你的提示 我找到了解决方法。您可以将应用服务计划移动到同一个资源组,然后您可以将应用从一个计划移动到另一个计划。 先移动资源会做一个检查,然后你可以审查,最后移动。