Migrate an ASP.NET Web application to an Azure Virtual Machine

This document provides an overview of how to migrate an ASP.NET web application from on-premises to an Azure Virtual Machine.

Quickstart

Learn how to create a virtual machine and publish your app to it: Publish to an Azure VM

Get Started

These tutorials demonstrate the steps to create (or migrate) a virtual machine, publish your web application to it, and other tasks that may be required to support your application in Azure.

Considerations

Benefits

Virtual machines offer the easiest path to migrate an application from on-premises to the cloud. They enable you to replicate the same environment your application uses on-premises, while removing the need to maintain your own data centers. Virtual Machine Scale Sets provide high availability and scalability for applications running in Virtual Machines.

Virtual Machine Size

Choose the virtual machine size and type that is best optimized for your workload. For more information, see Sizes for Windows virtual machines in Azure.

Maintenance

Just like an on-premises machine, you are responsible for maintaining and updating the virtual machine*. If your application can run in a Platform as a Service (PaaS) environment such as Azure App Service or in a container, that will remove this need.

*Automatic OS upgrades for virtual machine scale sets is currently available as a Preview service.

Virtual Networks

Azure Virtual Networks enable you to:

  • Build a hybrid infrastructure that you control
  • Bring your own IP addresses and DNS servers
  • Create an isolated and highly secure environment for your applications
  • Connect your VM to your on-premises network using one of several connectivity options
  • Integrate your virtual machine into your on-premises network using ExpressRoute

To get started, see the Virtual Network documentation

Active Directory

Many applications use Active Directory for authentication and identity management.

SQL Databases

If your application is using an on-premises database, your app will not be able to talk to it by default. You can either:

  • Configure a hybrid network that enables your application to access your database running on-premises.
  • Migrate your database to the Azure. For more information, see Migrate your SQL Server database to Azure.

High Availability and Scalability

Virtual Machine Scale Sets

You want to make sure that your application is highly available and can scale, migrate your VM image to an Azure Virtual Machine Scale Set to improve the availability and scalability of your application. VM Scale Sets provide the ability to use an existing VM you've already configured or set up a build pipeline to build an image with your application.

To get started, see Deploy your application on virtual machine scale sets.

Centralized Logging

When running your application across multiple instances, consider storing your logs in a centralized location such as Azure Storage.

Next steps