Skip to content

Commit 04b1c48

Browse files
authored
Merge pull request #296898 from jeffwmartinez/jefmarti-py-win-linux
adding guidance doc
2 parents 6397a9e + 37fd43e commit 04b1c48

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
title: What to consider when migrating from Windows to Linux on App Service
3+
description: Learn key considerations when migrating apps from Windows to Linux on Azure App Service.
4+
keywords: azure app service, web app, python, windows, linux, migration
5+
author: jefmarti
6+
7+
ms.topic: overview
8+
ms.date: 03/25/2025
9+
ms.author: jefmarti
10+
---
11+
# What to consider when migrating from Windows to Linux on App Service
12+
13+
Azure App Service supports both Windows and Linux. The supported OS depends on your apps runtime of choice. If a given runtime is no longer supported on an OS, you may need to migrate your application to a supported OS.
14+
15+
If you received a notification that you need to migrate your Python on Windows apps to Linux, consider the following topics when migrating.
16+
17+
### Code dependencies and compatibility
18+
19+
Ensure that any dependencies or components that your application uses are also available on Linux. If Windows specific dependencies are not available on Linux, you may have to find an equivalent Linux option.
20+
21+
### Deployment tools
22+
23+
If you use continuous deployment tools like GitHub Actions or Azure Pipelines, you need to make sure the build agent is using the correct operating system. For Windows to Linux, the build agent should be changed from using Windows to Ubuntu.
24+
25+
### App Service features
26+
27+
While most App Service features will have parity between Windows and Linux, some Windows specific features like the Console are replaced with SSH tools on Linux.
28+
29+
### Domain name
30+
31+
Deploying a new Linux application requires a new name for your app. Keep in mind any connected custom domains need to be updated to route to the new name as well.
32+
33+
### Networking
34+
35+
When redeploying your application to Linux, your inbound IP address changes. See the documentation for more information on inbound IP addresses.
36+
37+
### Managed Identity
38+
39+
If you managed identity is configured with your applications, be sure to update your granted permissions to use the deployed Linux application.
40+
41+

articles/app-service/toc.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -541,6 +541,28 @@ items:
541541
href: https://azure.microsoft.com/resources/samples/?service=app-service
542542
- name: Videos
543543
href: https://azure.microsoft.com/resources/videos/index/?services=app-service
544+
- name: Migrate to App Service
545+
items:
546+
- name: Assess .NET
547+
href: app-service-migration-assess-net.md
548+
- name: Discover .NET
549+
href: app-service-migration-discover-net.md
550+
- name: Migrate .NET
551+
href: app-service-asp-net-migration.md
552+
- name: Migrate containerized .NET
553+
href: ../migrate/tutorial-app-containerization-aspnet-app-service.md?bc=/azure/bread/toc.json&toc=/azure/app-service/toc.json
554+
- name: Migrate Java
555+
href: app-service-java-migration.md
556+
- name: Migrate Tomcat
557+
href: /azure/developer/java/migration/migrate-tomcat-to-tomcat-app-service?toc=/azure/app-service/toc.json&bc=/azure/bread/toc.json
558+
- name: Migrate JBoss EAP
559+
href: /azure/developer/java/migration/migrate-jboss-eap-to-jboss-eap-on-azure-app-service?toc=/azure/app-service/toc.json&bc=/azure/bread/toc.json
560+
- name: Migrate WebLogic
561+
href: /azure/developer/java/migration/migrate-weblogic-to-jboss-eap-on-azure-app-service?toc=/azure/app-service/toc.json&bc=/azure/bread/toc.json
562+
- name: Migrate WebSphere
563+
href: /azure/developer/java/migration/migrate-websphere-to-jboss-eap-on-azure-app-service?toc=/azure/app-service/toc.json&bc=/azure/bread/toc.json
564+
- name: Migrate Python Windows apps to Linux
565+
href: app-service-migration-windows-linux.md
544566
- name: Cookbooks
545567
items:
546568
- name: Reference Architectures

0 commit comments

Comments
 (0)