0% found this document useful (0 votes)
86 views

Operation Sheet 3.1: Installing Internet Information Service (IIS) in Windows Server 2012 R2

This document provides instructions for installing and configuring the Internet Information Services (IIS) web server role in Windows Server 2012 R2. It has 10 steps to install IIS which include adding the web server role, selecting features, and configuring the default website. It then has 8 additional steps to host a website on IIS which include creating an HTML file, stopping the default website, adding a new website, and testing the new site in a web browser. The overall objective is to teach students how to install and configure IIS as a web server and create their first website.

Uploaded by

Patrick D Cerna
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
86 views

Operation Sheet 3.1: Installing Internet Information Service (IIS) in Windows Server 2012 R2

This document provides instructions for installing and configuring the Internet Information Services (IIS) web server role in Windows Server 2012 R2. It has 10 steps to install IIS which include adding the web server role, selecting features, and configuring the default website. It then has 8 additional steps to host a website on IIS which include creating an HTML file, stopping the default website, adding a new website, and testing the new site in a web browser. The overall objective is to teach students how to install and configure IIS as a web server and create their first website.

Uploaded by

Patrick D Cerna
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 16

FEDERAL TECHNICAL & VOCATIONAL EDUCATION & TRAINING INSTITUTE

(TVETI) ADDIS ABABA, ETHIOPIA


MASTER OF SCIENCE IN ICT TEACHERS EDUCATION

Operation Sheet 3.1 :


Installing Internet
Information Service (IIS) in
Windows Server 2012 R2
DR. PATRICK D. CERNA

2017

[Type text] Page 1


ICT 543 – SERVER ADMINISTRATION LEARNING GUIDE 3
Installing and Configuring IIS Web Server in Windows 2012 Server
Objectives: After the end of the activity, the students will be able to:

 Install and Configure IIS Web Server


 Create Website on IIS Web Server
 Test the configuration

Procedure:

PART I: Installing IIS Web Server


Step 1: Install the Web Server (IIS) role
Open the Server Manager and click Add Roles and Features:

Step 2: Go on until you reach the Server Roles tab:

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 2


Step 3: Select Web Server (IIS):

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 3


Click Add Features:

Step 4: Ignore the Features tab and go on:

Step 5: Click Next:

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 4


Step 6: The default configuration will be fine. Click Next:

Step 7: Click Install:

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 5


Step 8: Installation completed!

Step 9: Configure IIS

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 6


Go back to the Server Manager. Select Internet Information Services (IIS) Manager from the Manage menu:

Step 10: Click Add Website:

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 7


Step 11: Specify at least the site name and path. Click Ok:

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 8


Your first site is ready to be accessed.

PART II: Steps to Host/ Create website on IIS on Windows Server 2012 R2

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 9


Step 1: When you install IIS on Windows server 2012 R2, it create a default site. To check the default site of
IIS, click on Start then select Internet Explorer and type http://server-name (Server-name is the name of
Computer on which you have installed IIS) then hit Enter and you will get the default page.

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 10


Step 2. Web designers are responsible to create website but for this practical, we’ll create a simple webpage.
To create a webpage open Notepad and type content and then save it as Dot HTML (.html) file. We would not
learn HTML in this practical, as it is out of scope for this post. Once the file is created, we’ll save the file in
C:\IIS folder. By default all the IIS contents are saved in c:\inetpub\wwwroot.

<!DOCTYPE html>
<html>
<body>

<h1>Welcome to my Server</h1>
<p>Amasedgenalehu </p>

</body>
</html>

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 11


Step 3: To create website, open IIS window, click on start then select down arrow and select Internet
Information Service icon.

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 12


Step 4. On the IIS console, we have to stop the default site by clicking on stop. As the default site is
running on port 80 and we need to create website which would also run on port number 80.

Step 5: To create website right click on sites and then select Add website.

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 13


Step 6. To create website, Define the name, physical path and bindings like Type of sites(http or https),
IP address and Port of the website.

In “IP Address” option, you can even select an IP address on which you want this site to run.

Click on Ok to continue.

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 14


Step 7.:We’ll get a warning message that port:80 is assigned to another site and we’ll not be able to
start our website that’s why we have to confirm to add this duplicate binding by clicking on YES. This
would not break anything as we already disabled “Default Website”.

Step 8. On IIS Manager window we can see our website is created.

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 15


Step 9. Open Internet Explorer to browse our site which we have created.

Step 10. Type server name (http://servername) in address bar and hit enter. This would show the
webpage that we created.

Operation Sheet 3.1: IIS by: Dr. Patrick D. Cerna Page 16

You might also like