简体   繁体   中英

Can we RDP / install third-party software to Azure App Service Web App

I have read plenty of literature in this context (see links below). The presence of classic vs new Azure management portal, Roles vs App Services, Azure Website vs Azure Web Apps only complicates the matter. Although I believe I have good understanding of these terms and the latters are more or less improved re-incarnations of the formers in the above comparisons, the literature is written mostly using the former of these and not necessarily depicts the options available in the new Management portal.

So what I am really looking forward to understand very clearly is:

  1. Can I RDP to Azure App Service Web App underlying compute resource?
  2. Can I install custom third party software components (eg Crystal Reports) to Azure App Service Web App underlying compute resource?

Reference 1

Reference 2

Reference 3

Reference 4

Reference 5

Reference 6

While you cannot RDP into Web App instances, you can connect to them via kudu and get a command prompt, by visiting yoursite.scm.azurewebsites.net . You can also get to this through the portal:

kudu的工具刀片

This will give you several tools (such as process explorer, environment explorer, command prompt, and more). It's not an RDP replacement, as it's not designed to let you access specific instances. It's also not the way you should be installing/changing software (aside from general testing). But... it's as close to RDP as you'll get, with web apps. Here's what the console window looks like, which opens via the browser:

控制台窗口

RE:Can I RDP to Azure App Service Web App underlying compute resource?

No, you are not allow to RDP into the machine. You application is running within a sandbox , depending on your plan, one machine might running multiple sandbox from different user.

RE: Can I install custom third party software components (eg Crystal Reports) to Azure App Service Web App underlying compute resource?

No, the machine will upgrade periodically, content might be reset. Also user that app is running on will not have the privileged to install application. If your application is depending on other dependencies, eg asp.net web application, you should specify all dependencies during build time (nuget).

Check the first two reference you provide, they are talking about Azure Virtual Machine, not Azure App Service, where Azure Virtual Machine is SaaS, Azure App Service is a PaaS. If you are looking for something in the middle, please try Azure Cloud Service , it supports RDP and I believe you should be able to install third party apps with on start script.

With App Service, you can't RDP or install 3rd party software.

If you need to do that, look at Virtual Machines. Another option is using Cloud Services' Web or Worker Role (look for the startup task).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM