Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check IIS version on Azure Websites?

Tags:

iis

azure

I can't find any information about IIS on my Azure Websites Dashboard. I checked every panel.

like image 352
Llm Avatar asked Sep 08 '14 17:09

Llm


People also ask

How do I check IIS version on Azure app?

You can check the OS that your App Service is running on by looking at the OS Name field in the Overview blade. See here for more details and a screenshot of what that looks like. Then the IIS version just falls out of that (8.0 for Server 2012 and 10.0 for 2016).

What version of IIS does Azure App Service use?

Azure Web App identified target web site is using IIS 10 and detected that it is out of date - how to change - Server Fault. Stack Overflow for Teams – Start collaborating and sharing organizational knowledge.

How do I determine IIS version?

Using Run CommandSelect windows +R key and type inetmgr and press OK. It will open the IIS manager window . In the same way go to Help ->About Internet Information Services and you will get the version installed on your computer.

Does Azure use IIS?

Azure is a group of cloud services. One of the services is a Web Site Host, that allows you to use cloud computers to run the IIS that hosts your web site. As part of the service, Azure will take care of installing and using the IIS server for you.


1 Answers

You can see the IIS version and other server information in Kudu on the Environment page under the Server variables heading.

The variable name is SERVER_SOFTWARE, for example my web app has SERVER_SOFTWARE=Microsoft-IIS/8.0

To access Kudu, you can navigate to https://[app-name].scm.azurewebsites.net, or you can look for the Advanced Tools blade under Development Tools:

Advanced Tools in the App Service side menu

like image 80
peregrination Avatar answered Sep 21 '22 22:09

peregrination