如何将现有 Azure 资产迁移到 Azure 应用服务

How To Migrate Existing Azure Assets to Azure App Service

是否可以将现有的 Azure 资产(即云服务、通知中心、SQL 服务器和数据库、存储帐户和服务总线)迁移到 Azure 应用服务?如果是,怎么做?

The Azure App Service (Mobile Service App) can use an existing Notification Hub. Using the "Push" setting, you can select a hub within the same resource group.

对于 Azure 应用服务,当您为应用服务配置通知中心时,您可以选择现有的通知中心。 注意:您可以选择跨不同资源组和不同位置的现有通知中心。此外,当您在 Azure 门户上的应用服务的 "SETTINGS > Push" 下添加一个新的中心时,它会在您的应用服务的同一资源组中创建一个新的通知中心,并且新中心的位置将使用的位置你的资源组。我建议您关注 Azure Resource Manager overview and Azure App Service plan overview 以更好地了解资源组和应用程序服务计划。

Can existing Azure assets, i.e. cloud services, notification hubs, SQL servers and databases, storage accounts and service buses be migrated to a Azure App Service?

对于云服务,我刚找到migrate an cloud services to service fabric and migrate the web application to cloud service。 AFAIK,如果您想将您的云服务应用程序迁移到 Azure 应用程序服务,您需要调整您的项目并将其部署到您的应用程序服务。

对于 SQL 服务器和数据库、存储帐户和服务总线,您只需在应用服务中以编程方式与它们通信时更改特定服务的连接字符串。此外,为了减少您的应用服务与其他 Azure 服务之间的延迟,您需要确保它们位于同一数据中心或彼此靠近。