IIS

  Home  Web Servers / Services  IIS


“IIS (Internet Information Services) Interview Questions and Answers will guide us now that Internet Information Services (IIS) is a web server application and set of feature extension modules created by Microsoft for use with Microsoft Windows. It is the worlds second most popular web server in terms of overall websites behind the industry leader Apache HTTP Server. Learn IIS or get preparation for a job in IIS with the help of this Internet Information Services (IIS) Interview Questions Answers”



80 IIS Questions And Answers

43⟩ Do you know what is Recycling of Application Pool?

ecycling Application pool means recycle the Worker process (w3wp.exe ) and the memory used for the web application.

There are two types of recycling related with Application pool

1. Recycling Worker Process - Predefined Settings

2. Recycling Worker Process - Based on Memory

 189 views

44⟩ Tell us how To Take IIs Server Backup?

Open IIS and right click on Computer in IIS.

Select Internet Information Services. Now goto All Tasks Backup/Restore Configuration.

Click on create backup and give the backup name.

 201 views

48⟩ Do you know what Is Web Farm In Iis?

Hosting webapplication in multiple webservers using load balancer is called as Web Farm.To avoid the high load in single server this load balancer method will use to distribute the traffic to different server on same web application.

 206 views

51⟩ Explain me what are the different version on IIS that you have worked on?

Before answering this question you need to know what are the different IIS version is available in different OS. Below is the list of IIS version with different Operating system.

Windows Server 2008 - Windows Vista - Home Premium/ Ultimate - IIS 7.0

Windows Server 2003 - IIS 6.0

Windows XP Professional - IIS 5.1

Now based on your working experience you can say that you have worked on IIS 5.1 and 6.0 or only IIS 7. Etc.

Now, the next question that can asked after answering this question is “what is the difference between them ? ” – Well I will come with this later.

 208 views

52⟩ Explain me what are the different security settings available in IIS?

Below are the commonly used IIS Security settings

1 Anonymous

2 Integrated Windows Authentication

3. Basic Authentication

4. Digest Authentication

5. Passport Authentication

For Set security permission you need to go to Virtul Directory > Right Click > Properties > Directory Security

Click on Edit Button .

 221 views

54⟩ Tell me what are the different way that we can hosted site on IIS?

We can hosted site on IIS either creating Virtual Directory through IIS manager or Using Folder Web Sharing .

Apart from that Visual studio provide some inbuilt features to host the site on IIS like using Publishing the web site , Using Copy web Tool or Creating Virtual directory during the creating the project by choosing Location as HTTP

 188 views

56⟩ Please explain what is the Role of IIS?

Visual studio having It own ASP.NET Engine which is capable enough to run Asp.net web application from visual studio. So we just click on Run button to start the application.

Now this is the scenarios of local environment. But If we want to host it on server from where all user can access the sites then IIS comes into the picture.

IIS provides a redesigned WWW architecture that can help you achieve better performance, reliability, scalability, and security for our Web sites. IIS can support following Protocol HTTP/HTTPS, FTP, FTPS, SMTP Etc. We need to host the site on IIS, when request comes from client it first hits the IIS Server, then the server passed it to ASP.NET worker process to execute. Then the response also passes to client via IIS itself.

 215 views

57⟩ Please explain how we can set the Idle Time out of an worker process?

We can set the Idle time out for an worker process from Application Pool Properties.

In Performance Tab of Application pool, we can set the Idle Time out of the worker process. This means worker process will shut down after that given time period if it stay idle. And will again wake up again if a new request comes.

 213 views