0772.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>How to Install Microsoft Internet Information Services (IIS) on Windows Server</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,Web Based,How To Install IIS On Windows Server,IIS,Internet Information Services,Microsoft,Microsoft Windows,Windows Server,Windows Administration,Windows,Web Server,Web Server Administration,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="How to Install Microsoft Internet Information Services (IIS) on Windows Server">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="07/29/2022 06:37:04 PM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>How to Install Microsoft Internet Information Services (IIS) on Windows Server</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is IIS (Internet Information Services)?</h2>
  26. <blockquote><em>Internet Information Services (IIS) for Windows&reg; Server is a flexible, secure and manageable Web server for hosting anything on the Web. From media streaming to web applications, IIS&#39;s scalable and open architecture is ready to handle the most demanding tasks. -<a href="https://www.iis.net/" target="_blank">https://www.iis.net/</a></em></blockquote>
  27. <ol>
  28. <li>Log into the Windows server with an account with admin privileges</li>
  29. <li>Launch Server Manager from the Start menu if it does not automatically load</li>
  30. <li>Click Add roles and features</li>
  31. <li>Click Next on the Before you begin screen</li>
  32. <li>Select Role-based or feature-based installation &gt; Next</li>
  33. <li>Leave Select a server from the server pool selected and select the current Windows server &gt; Next</li>
  34. <li>Check the Web Server (IIS) box</li>
  35. <li>A popup will appear with additional required roles and features, click the Add Features button</li>
  36. <li>Click Next</li>
  37. <li>Click Next on the Select features screen</li>
  38. <li>Click Next on the Web Server Role (IIS) screen</li>
  39. <li>Select any additional role services to include in the installation (Common HTTP Features &gt; HTTP Redirection; Security &gt; Windows Authentication are recommended)</li>
  40. <li>Click Install on the confirmation screen</li>
  41. <li>Leave the installation progress screen open until the install completes</li>
  42. <li>Once the Feature installation completes successfully, click the Close button</li>
  43. <li>Click the Start menu &gt; Search for IIS &gt; Select Internet Information Services (IIS) Manager</li>
  44. <li>In IIS Manager, expand the server name &gt; Expand sites &gt; Right click on Default web Site &gt; Select Explore</li>
  45. <li>A File Explorer window will display the wwwroot folder for IIS</li>
  46. <li>Right click in the whitespace &gt; New &gt; Text Document &gt; Name the new file default.html</li>
  47. <li>Edit default.html in Notepad and paste the following
  48. <p>&lt;html&gt;<br />
  49. &lt;body&gt;<br />
  50. &lt;h1&gt;Hello world&lt;/h1&gt;<br />
  51. &lt;h3&gt;Served from IIS&lt;/h3&gt;<br />
  52. &lt;/body&gt;<br />
  53. &lt;/html&gt;</p>
  54. </li>
  55. <li>Save the changes to default.html and close Notepad</li>
  56. <li>Open a web browser and navigate to http://DNSorIP/default.html</li>
  57. </ol> </div>
  58. </div>
  59. </body>
  60. </html>