Top 35+ Most Asked IIS Interview Questions and Answers1) What is IIS in ASP.NET?IIS is an acronym that stands for Internet Information Server. It is one of the most popular web servers developed by Microsoft and is used to host and provide Internet-based services to ASP.NET and ASP web applications. IIS is mainly used to respond to the requests that come from users. When a user sends a request to the server, IIS takes that request from the user, processes it, and sends the response back to the user. IIS consists of its own ASP.NET process engine to handle the ASP.NET request. We can configure an ASP.NET application according to the version of IIS the application is running on. IIS is the most used HTTP server in the world, which runs on Windows. 2) What are the most important features of an Internet Information Server?Following is the list of the most important features of the Internet Information Server:
3) What is the process for hosting a website on IIS?There are two ways to host a website on IIS:
4) What are the key functionalities of IIS?The Visual studio application consists of its own ASP.NET engine that can easily run ASP.NET web applications. We have to click on the Run button to start the application. But, this is only in the case of the local environment. If we host it on the webserver from where all users can access the sites, then we need IIS. IIS has a redesigned WWW architecture that provides better performance, reliability, scalability, and security for our websites. IIS can support the following Protocols HTTP/HTTPS, FTP, FTPS, SMTP Etc. The websites hosted on the IIS get the request from the clients. When the client sends the request, it first hits the IIS Server, and then the server passes it to the ASP.NET worker process to execute the request. After that, the response is passed to the client via IIS itself. 5) Which are the most important protocols that IIS supports?The most important protocols that IIS supports are HTTP, HTTPS, FTP, FTPS, SMTP, NNTP, etc. 6) What do you understand by Kernel Mode and User Mode in IIS?The Kernel Mode and User Mode are the two main layers of IIS architecture. 7) What are the newest features added in IIS 8.5?The two newest features added in IIS 8.5 are enhanced logging capabilities and dynamic site activation. 8) What do you understand by virtual directory in IIS?In IIS, the virtual directory is the name of a directory that is mapped to a physical directory in a local server. 9) What are the different IIS versions available in different operating systems?IIS is the most used HTTP server in the world that runs on Windows. Following is a list of different IIS versions available in different Windows operating systems:
10) What is the use of Application Pool in IIS?The main purpose behind using the Application Pool in IIS is to separate applications from each other and simplify the management. The Application Pool defines a group of settings for the worker processes that maintain request processing for all the applications in a pool. 11) What are the two main components of SVCHost.exe?The two main components of SVCHost.exe are WWW Publishing Service (W3SVC) and Windows Activation Process (WAP). 12) What is a web farm in IIS? What are its advantages?In IIS, a web farm is a process of hosting web applications on multiple web servers using a load balancer. It is a group of two or more web servers/nodes that host multiple instances of an app. It provides a load balancer method to avoid the high load on a single server and distributes the traffic to a different server on the same web application. When a user sends a request to a web farm, the load balancer distributes the requests to the web farm's nodes to prevent the high load on a single server. A web farm provides the following advantages:
13) What steps are used to install and configure an IIS web farm?We should follow the following steps to install and configure an IIS web farm:
14) What do you understand about a web garden in IIS?A web garden is a configuration in which an IIS application pool is set up to run within multiple worker processes on a single server. An application pool can be configured for multiple websites hosted in IIS. When we implement a web garden, it divides the website's processing among several worker processes. 15) What are the advantages of using web gardens in IIS?Following is the list of key advantages of using web garden in IIS:
16) What are the key differences between a web farm and a web garden?A web farm is a web hosting system which consists of multiple web servers for multiple clients. This is mainly used to prevent traffic and allow smooth availability of resources to all the clients. So we can say a web farm is used while hosting a single web application on multiple web servers to distribute the load among them. On the other hand, a web garden is a hosting web system where an application pool is configured while specifying the number of worker processes. It is mainly used for hosting multiple processes on a single web server. Let's see the key differences between a web farm and a web garden in the following table:
17) What is the DefaultAppPool in IIS?DefaultAppPool is a folder created when we install the Internet Information Service on our computer. It is not a virus or malware. It is the name of the default application pool in IIS. The Internet Information Service or IIS is the webserver software included with Windows. It is not installed by default. 18) Is it safe to delete IIS AppPool DefaultAppPool?When we install the IIS service on our computer, it creates DefaultAppPool automatically. It is not malware or a virus, so we don't need to delete it. It is not safe to delete this folder because IIS may not work properly when it doesn't exist. We should just leave it alone and don't use it. We should also ensure that nothing is using it. 19) What is the application pool in IIS?In IIS, an application pool specifies a group of one or more worker processes configured with common settings that serve requests to one or more applications assigned to that application pool. An application pool is mainly used to separate sets of IIS worker processes that share the same configuration and application boundaries. It is done to achieve better security, reliability, scalability, availability and performance and keep running without impacting each other. The worker process serves as the process boundary that separates each application pool. When one worker process or an application faces any issue or recycles, other applications or worker processes aren't affected. A single application pool can have multiple worker processes. 20) What are the log files in IIS? / What do you understand by IIS logs?Log files or IIS logs record data from Internet Information Services, web pages, and apps. While IIS itself ensures the scalability and flexibility of the web resources, the log files are used to record different actions on a server and specific statistics about the websites, such as the date, time, user data, site visits, IPs, queries, and volume of transmitted data. 21) What are the additional or enhanced security features introduced in IIS 7.5?Following is the list of key additional or enhanced security features introduced in IIS 7.5:
22) What is the default identity of an application pool?The default identity of an application pool is Network Services. 23) What are the different modules in IIS 7.0 modular architecture?The IIS 7.0 modular architecture has the following modules:
24) What do you understand by identities of an application pool?When we run our site on our own server or in the cloud, we must ensure the security feature as a top priority list. IIS provides this security feature in the name of application pool identity. Application pool identity is a security feature of IIS. Microsoft introduced this feature in Service Pack 2 (SP2) of Windows Server 2008 and Windows Vista. An application pool identity facilitates us to run an application pool under a unique account without having to create and manage the domain or local accounts. 25) What are ISAPI and ISAPI extensions in IIS?ISAPI is an open and faster specification introduced by Microsoft Inc. It is faster and more flexible than CGI for extending IIS. It is a powerful application as ASP pages are processed through an ISAPI extension called ASP.dll. ISAPI extensions are the applications that run on IIS and have access to all of the functionality provided by IIS. Clients can access ISAPI extensions similarly as they access a static HTML file or dynamic ASP file. We can develop two types of applications, i.e. extensions and filters using ISAPI. When requested, an ISAPI extension runs the same way as any other static HTML file or dynamic ASP file. 26) How can we enable ISAPI in IIS?We can enable the ISAPI in IIS by following the steps given below:
27) What is the default user name of an anonymous login in IIS?The default user name of an anonymous login in IIS is "IUSR_MachineName". 28) Why do we use app pool recycling in IIS?App pool recycling is used in IIS to free up the consumed memory by the applications in an app pool. 29) Why do we need to debug IIS remotely?Following are the reasons that we need to debug IIS remotely:
30) Which tool is used for debugging IIS remotely?We can use the tool named mavsmon.exe process to debug IIS remotely. It was first introduced to MS Visual Studio 2005. The location of this tool is: Install path\Microsoft Visual Studio 8\Common7\IDE\Remote Debugger\x86. 31) What are the different security settings available in IIS?Following is the list of most common different security settings available in IIS:
32) What are the main functionalities of ISAPI filters in IIS?In IIS, the ISAPI filters are mainly used to modify and enhance the functionalities of IIS. These are also used to filter the requests to find one to process, authenticate, and apply the input or output data encryption. 33) What is the use of enabling pinging properties for the application pool in IIS?IIS has to monitor the health of a worker process periodically. It checks whether a worker process is idle or not, whether all worker processes are running properly, and whether it is the time to recycle. By enabling pinging properties, the activation process monitors worker process performance, health, idle time etc. By default, it sets to 30s. 34) What is the role of a protocol listener in IIS?In IIS, the protocol listener is mainly used to do the following things:
35) What is the functionality of HTTP.SYS in IIS?The HTTP.SYS is a protocol listener that is mainly used to receive client requests, send them to IIS for processing, and finally send back the client's responses. HTTP.SYS is the subsection of the Kernel Mode and is the core component to receive and serve HTTP requests and pass them off to the worker processes. 36) What are the main components of SVCHost.exe?The main components for SVCHost.exe are as follows:
37) What is the role of IIS Metabase in IIS?The IIS Metabase is mainly used to maintain the settings and configuration data in IIS. 38) What are the different subsections of User mode in IIS?In IIS, the different subsections of User mode are Web Admin Service, Virtual Directory, and Application Pool. |