<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Isdonobi</title>
    <description>The latest articles on DEV Community by Isdonobi (@isdonobi).</description>
    <link>https://dev.to/isdonobi</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F799979%2F5a07c9e4-0fd6-4bb6-a099-3358259e7738.jpeg</url>
      <title>DEV Community: Isdonobi</title>
      <link>https://dev.to/isdonobi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/isdonobi"/>
    <language>en</language>
    <item>
      <title> THE VIRTUAL MACHINE - TYPES AND HOW TO SETUP A VIRTUAL MACHINE</title>
      <dc:creator>Isdonobi</dc:creator>
      <pubDate>Fri, 28 Jan 2022 08:12:26 +0000</pubDate>
      <link>https://dev.to/isdonobi/the-virtual-machine-types-and-how-to-setup-a-virtual-machine-1759</link>
      <guid>https://dev.to/isdonobi/the-virtual-machine-types-and-how-to-setup-a-virtual-machine-1759</guid>
      <description>&lt;p&gt;What comes to your mind when you hear the word virtual? Basically, a logical representation of a physical thing. This applies to the computer world also, when something is said to be virtual, it simply means a logical representation of a physical thing created in a computer through software. To illustrate, take a look at the Ps4, the players aren’t the real players, but a virtual representation of the real players. Take a look at your photo album on your computer, it’s a virtual family. In the game “Temple Run” the person running and jumping is a virtual human being. In these illustrations, the football game, the family, and the person jumping and running are all created virtually using software on the computer.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;      Virtual machine, commonly abbreviated as VM is no different from other physical computer like laptop, desktop, smart phone or server, it has a CPU (Central Processing Unit), memory and so much more. While the part that makes up your computer (called hardware) are tangible and physical, VM are often thought of as a software implementation of a physical computer. It creates an isolated duplication of a real computer and allows us to perform operations as we perform operation on a real computer.

      A VM is a software program that not only exhibits the behavior of a separate computer but also capable of performing task such as running it own programs and application like a separate computer. With a VM you can install one operating system in another operating system on same computer. To illustrate; you install a Linux operating system on your virtual machine on your windows operating system which happens to be your physical computer also known as the HOST.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Virtual hosts are able to share resources between multiple guests, or VM’s each with there operating system. The two basic type of VM are;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;System Virtual machine&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Process Virtual Machine&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;1. A SYSTEM VM&lt;/strong&gt;
&lt;/h2&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;The System VM is also called hardware virtual machine. It is the software emulation of a computer system. It can also be referred to as a fully virtualized VM designed to be a substitute of a physical machine or acting as a substitute for the physical computer. To illustrate; you can install Windows XP/7/8 or Linux Ubuntu/Kali in Windows 10 operating system with the help of VM.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;The system VM provides a platform for the execution of a complete operating system. It will create a number of different isolated identical execution environment in a single computer by partitioning computer memory to install and execute the different operating system at the time. Hardware resources are shared and managed, forming multiple environments on the host system. These very environments are isolated from each other but exist on the same physical host. It enables time-sharing among several single-tasking operating systems.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--QvsgSVMA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ltqmqt0z4roefv1pvy0w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--QvsgSVMA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ltqmqt0z4roefv1pvy0w.png" alt="Image description" width="482" height="332"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Bear in mind that to enable memory sharing between different virtual machine on one computer operating system, memory over commitment system can be applied. With memory pages having identical content, the memory pages can be shared among multiple VM which are present on the same host. But this is highly useful for read-only pages.&lt;/p&gt;

&lt;p&gt;Examples of system VM&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;i.       VMware

ii.     VirtualBox
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;I. VMware&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The VMware has two versions. The VMware player which is a free and basic version. The second is the VMware workstation which is a paid application and often time used in enterprise setting. The work station application provides all the benefit you could have on a VMware player and also includes the feature to clone machines. The VMware can run but on Linux and windows operating systems.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;II. VirtualBox&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;VirtualBox is an easy user friendly VM application. It has large number of features that makes sustaining multiple virtual machines simple. It also allows files, drive and peripheral sharing with the host computer. The VirtualBox can be used on various application such as Mac Operating System, Windows Operating System and Linux Operating System.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;2. Process Virtual Machine&lt;/strong&gt;
&lt;/h2&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; A process virtual machine is also called a language virtual machine or an application VM and sometimes it is been referred as Manage Run-time Environment. This type of VM runs as a normal application inside the host operating system, supporting a single process.
The purpose of a process VM is to perform a platform-independent programming environment that abstracts the details of the underlying hardware or operating system and also allows a program to execute in the same way on any platform. Process VM are implemented using an interpreter for improving performance.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--HhGjW4ns--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l6z5iku3emalzeodg449.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--HhGjW4ns--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l6z5iku3emalzeodg449.png" alt="Image description" width="482" height="362"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Example of Process VM are&lt;/p&gt;

&lt;p&gt;I.       Java Virtual Machine (JVM)&lt;/p&gt;

&lt;p&gt;II.     Parrot Virtual Machine (PVM)&lt;/p&gt;

&lt;p&gt;III.  Common Language Runtime (CLR)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;I. JVM&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;JVM is an abbreviation of Java Virtual Machine. It allows any system to run Java application as if they were native system. It also allows other programs written in other languages as far as they are compiled to Java bytecode.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;II. PVM&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The parrot VM is designed to efficiently compile and execute byte code for dynamic language. It is a host to various languages implementing in various stages of completion, including TCC, JavaScript, Ruby, Lua, Scheme, PHP, Python, Perl 6, APL and .Net bytecode translator.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;III. CLR&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is the virtual machine component of Microsoft .Net framework. It manages the execution of .Net. Just-in-time compilation convert the manage codes (compiled into mediate language code), into machine instructions which are then executed on the CPU of the computer.&lt;/p&gt;

&lt;p&gt;Let create a virtual machine with the following steps;&lt;/p&gt;

&lt;p&gt;VM name: Web01&lt;/p&gt;

&lt;p&gt;Region: Closest region to your location&lt;/p&gt;

&lt;p&gt;No infrastructure redundancy required&lt;/p&gt;

&lt;p&gt;Image: Windows Server 2019 Datacenter Gen1&lt;/p&gt;

&lt;p&gt;Size Standard _DS1 with 1 VCPU 3.5 GB of memory&lt;/p&gt;

&lt;p&gt;If you do not see that size, select the closest size available&lt;/p&gt;

&lt;p&gt;Username: iisadmin&lt;/p&gt;

&lt;p&gt;Password: Enter your desired password&lt;/p&gt;

&lt;p&gt;Enter ports 80, 443, and 3389&lt;/p&gt;

&lt;p&gt;Click review and create.&lt;/p&gt;

&lt;p&gt;Connect to your web server via RDP.&lt;/p&gt;

&lt;p&gt;Go to the Server Manager and add the IIS (Server Role).&lt;/p&gt;

&lt;p&gt;After installation, go to file explorer and access the path %SystemDrive%\inetpub\wwwroot.&lt;/p&gt;

&lt;p&gt;Add a file named “index.html” with the text&lt;/p&gt;

&lt;p&gt;Welcome to my initial web page.&lt;/p&gt;

&lt;p&gt;Do not worry about adding HTML /markup.&lt;/p&gt;

&lt;p&gt;Test the website by going to the public IP address. You can access the public IP address from the Azure Portal, by going to the Overview section of the Virtual Machine&lt;/p&gt;

&lt;p&gt;Here are the detailed step-by-step on how to complete the exercise:&lt;/p&gt;

&lt;p&gt;Login to the Azure Portal.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--oeYYLijE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wx5ayibwnssek6p758ld.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--oeYYLijE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wx5ayibwnssek6p758ld.png" alt="Image description" width="880" height="430"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on Search bar at the top of your Azure portal, type Virtual Machine and click on it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--DwCrsEoS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/azvoqtgub2pf7hdz2fxo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--DwCrsEoS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/azvoqtgub2pf7hdz2fxo.png" alt="Image description" width="880" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--mM21VYTL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/616lkobtutwbz6rccoxp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--mM21VYTL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/616lkobtutwbz6rccoxp.png" alt="Image description" width="880" height="437"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on Ctreate &amp;gt; Virtual Machine&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--LjJkNYFQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/koz2srm4dxclp69tjjag.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--LjJkNYFQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/koz2srm4dxclp69tjjag.png" alt="Image description" width="880" height="439"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--g_h7W2Ew--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8wouwrzpcc5f47spjvfl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--g_h7W2Ew--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8wouwrzpcc5f47spjvfl.png" alt="Image description" width="880" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Subscription can be left on default - Azure Subscription 1. (just like the screenshot above.)&lt;/p&gt;

&lt;p&gt;To create a new &lt;strong&gt;Resource Group&lt;/strong&gt; click on &lt;strong&gt;Create New&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;Name the resource group &lt;strong&gt;Webservers&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Next will be the &lt;strong&gt;Virtual Machine Name&lt;/strong&gt; set to &lt;em&gt;&lt;strong&gt;web01&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The &lt;strong&gt;Region&lt;/strong&gt; can be left at default but double check that it is the region that is closest to your location. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Availability&lt;/strong&gt; options set it to &lt;strong&gt;&lt;em&gt;No infrastructure redundancy required&lt;/em&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Security Type&lt;/strong&gt; &amp;gt;  &lt;strong&gt;&lt;em&gt;Standard&lt;/em&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Image&lt;/strong&gt; use &lt;em&gt;&lt;strong&gt;Windows Server 2019 Datacenter-Gen1&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;You might not see Gen1 so click on &lt;strong&gt;Configure VM generation&lt;/strong&gt; &amp;gt; &lt;em&gt;Generation 1&lt;/em&gt; then go back to the image and use &lt;em&gt;&lt;strong&gt;Windows Server 2019 Datacenter-Gen1&lt;/strong&gt;&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--8T6fjHaI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/klliejn699a1sohykpx4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--8T6fjHaI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/klliejn699a1sohykpx4.png" alt="Image description" width="880" height="433"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Size&lt;/strong&gt; use &lt;em&gt;&lt;strong&gt;Standarrd_DS1_v2 - 1 vcpu, 3.5 GiB memory&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;If you do not see this size, you can choose the size in the standard section with the closest specifications.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Username&lt;/strong&gt; use &lt;em&gt;&lt;strong&gt;adminblock&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Password&lt;/strong&gt; use a password that meets the given requirements&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Inbound Port Rules&lt;/strong&gt; leave it at &lt;strong&gt;&lt;em&gt;Allow Selected Port&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Select inbound ports&lt;/strong&gt; click on &lt;strong&gt;&lt;em&gt;HTTP (80) HTTPS (443) RDP (3389)&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--_7Ni48yN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/evfafe21rt42idzmcea4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--_7Ni48yN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/evfafe21rt42idzmcea4.png" alt="Image description" width="880" height="433"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next is &lt;strong&gt;licensing&lt;/strong&gt;  Don't change options for the licensing.&lt;br&gt;
Click on &lt;strong&gt;Review&lt;/strong&gt; + &lt;strong&gt;create&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--LjdIInQ4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/xag5oypvhn45ai12pmns.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--LjdIInQ4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/xag5oypvhn45ai12pmns.png" alt="Image description" width="880" height="429"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Next&lt;/strong&gt; click on &lt;strong&gt;Create&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--avN3EMV_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/04742ugjsaxxgxitxrjv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--avN3EMV_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/04742ugjsaxxgxitxrjv.png" alt="Image description" width="880" height="433"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This might take a few seconds but once provisioning is complete you will get a page that says something along the lines of&lt;/p&gt;

&lt;p&gt;Your deployment is complete.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--GuGG818V--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/c8dpeep9rg2fl1d6cqaw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--GuGG818V--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/c8dpeep9rg2fl1d6cqaw.png" alt="Image description" width="880" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Pat yourself on your back for getting to this point, You deserve it.&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Next click on the button &lt;strong&gt;&lt;em&gt;Go to resource&lt;/em&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--D_LQGL8I--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jixkpus5oten3n6ovufz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--D_LQGL8I--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jixkpus5oten3n6ovufz.png" alt="Image description" width="880" height="423"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next On the top left click &lt;strong&gt;Connect&lt;/strong&gt; and select &lt;em&gt;&lt;strong&gt;RDP&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--7sMexZdz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9ozn06t153r902j69onm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7sMexZdz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9ozn06t153r902j69onm.png" alt="Image description" width="880" height="429"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To Connect with &lt;strong&gt;RDP&lt;/strong&gt;:&lt;br&gt;
IP address used &lt;strong&gt;&lt;em&gt;Public IP address (102.133.184.189)&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Port number&lt;/strong&gt; is set to &lt;em&gt;&lt;strong&gt;3389&lt;/strong&gt;&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Hrl7DWBW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8t07q1wgnp501u5lllsn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Hrl7DWBW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8t07q1wgnp501u5lllsn.png" alt="Image description" width="880" height="424"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next Click on &lt;strong&gt;&lt;em&gt;Download RDP&lt;/em&gt;&lt;/strong&gt; file and open the file.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--nOxTNqR7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/p9ok7lartunrzhpj8ai6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--nOxTNqR7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/p9ok7lartunrzhpj8ai6.png" alt="Image description" width="880" height="432"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next input your &lt;strong&gt;&lt;em&gt;Password&lt;/em&gt;&lt;/strong&gt;, the password that you created within the Azure Portal. (If this doesn't work, not to worry check the next screenshot)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--oEmR52FI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8m4jfv3a1qd806zp6kw3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--oEmR52FI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8m4jfv3a1qd806zp6kw3.png" alt="Image description" width="880" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Depending on your network you may need to click on &lt;strong&gt;&lt;em&gt;More Choice&lt;/em&gt;&lt;/strong&gt; then click on &lt;strong&gt;&lt;em&gt;Use a different Account&lt;/em&gt;&lt;/strong&gt; input the login credentials which you use on your Azure Portal: &lt;strong&gt;&lt;em&gt;adminblock&lt;/em&gt;&lt;/strong&gt; as the &lt;strong&gt;&lt;em&gt;Username&lt;/em&gt;&lt;/strong&gt; and the &lt;strong&gt;&lt;em&gt;Password&lt;/em&gt;&lt;/strong&gt; you setup.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--eFWHHZZR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ynxkl4uecjkl4c6o8b9n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--eFWHHZZR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ynxkl4uecjkl4c6o8b9n.png" alt="Image description" width="880" height="431"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s---JtRNTex--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6spenud3v5lx9eptqmly.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---JtRNTex--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6spenud3v5lx9eptqmly.png" alt="Image description" width="880" height="431"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next click connect and yes to accept the certificate.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--q5ICO_fJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/b6u3f2qgex7zppgpck72.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--q5ICO_fJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/b6u3f2qgex7zppgpck72.png" alt="Image description" width="880" height="441"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Ta-Da! you've created your first Virtual machine. Please give yourself a pat at the back.&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--RYm6NMFG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/je27k7y0y5qt8i09h1bw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--RYm6NMFG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/je27k7y0y5qt8i09h1bw.png" alt="Image description" width="880" height="479"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now lets create a &lt;strong&gt;Webserver&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Login&lt;/strong&gt; and &lt;strong&gt;Server Manager&lt;/strong&gt; should be open. If not, you can click on the icon at the bottom middle&lt;/p&gt;

&lt;p&gt;Next click on &lt;strong&gt;Add roles and features&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Uf14LDnM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/j0xqcgtj74fghj19pyo6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Uf14LDnM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/j0xqcgtj74fghj19pyo6.png" alt="Image description" width="880" height="478"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Follow the wizard and leave all the settings in the default settings, keep clicking next until you get to &lt;strong&gt;Server Roles&lt;/strong&gt;.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;**Server Roles** select _**Web Server**_ (IIS).
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Select Include &lt;strong&gt;management tools&lt;/strong&gt; (if applicable)&lt;/p&gt;

&lt;p&gt;Click &lt;em&gt;&lt;strong&gt;Add features&lt;/strong&gt;&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--FYpVNJzh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ufgey66wn2k1h07gzwfs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--FYpVNJzh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ufgey66wn2k1h07gzwfs.png" alt="Image description" width="880" height="476"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--_fH0uROB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pqdmtsdiy39iu1w3ulcb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--_fH0uROB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pqdmtsdiy39iu1w3ulcb.png" alt="Image description" width="880" height="483"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click &lt;strong&gt;Next&lt;/strong&gt; . The minimal features should already be selected and adequate.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--pH1jjZ0v--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/niapvn46yhku4bgocz2n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pH1jjZ0v--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/niapvn46yhku4bgocz2n.png" alt="Image description" width="880" height="483"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click  &lt;strong&gt;Next&lt;/strong&gt; till you get to &lt;strong&gt;Role Server&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Scroll down, select &lt;strong&gt;&lt;em&gt;IIS Management Console in Management Tools&lt;/em&gt;&lt;/strong&gt;, then click &lt;strong&gt;&lt;em&gt;Next&lt;/em&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--2bqIVaZg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/eq3s70dfgxle7snczqu1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--2bqIVaZg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/eq3s70dfgxle7snczqu1.png" alt="Image description" width="880" height="483"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Select &lt;strong&gt;Restart the destination server automatically if required,&lt;/strong&gt; click on &lt;strong&gt;Yes&lt;/strong&gt;  then click &lt;strong&gt;Install&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--lKlhjoQN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wfzqiry4yqg1vzqizpy9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--lKlhjoQN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wfzqiry4yqg1vzqizpy9.png" alt="Image description" width="880" height="481"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The installation will take a few munities. Once the installation has completed, click &lt;strong&gt;Close&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s---GXQm-Ar--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/lyidaofzmj50hmbef51u.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---GXQm-Ar--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/lyidaofzmj50hmbef51u.png" alt="Image description" width="880" height="475"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Go to the main menu for you computer and search for &lt;strong&gt;inetmgr&lt;/strong&gt; and open &lt;strong&gt;Internet Information Services (IIS) Manager&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Vg1U9E-m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/0k3y1mpn2g6kir9k5gcn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Vg1U9E-m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/0k3y1mpn2g6kir9k5gcn.png" alt="Image description" width="880" height="492"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click &lt;strong&gt;web01&lt;/strong&gt; &lt;em&gt;(web01/iisadim)&lt;/em&gt; to open up the pane.&lt;br&gt;
Click the arrow next to &lt;strong&gt;sites&lt;/strong&gt; to access the &lt;strong&gt;default website&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--xmLgZWQe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/kkvbqiyf2e3xab8nv139.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--xmLgZWQe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/kkvbqiyf2e3xab8nv139.png" alt="Image description" width="880" height="457"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Right click on the &lt;strong&gt;Default website.&lt;/strong&gt;&lt;br&gt;
Select &lt;strong&gt;Manage Website.&lt;/strong&gt;&lt;br&gt;
Select &lt;strong&gt;Advanced Settings.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--npY0bMA6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pxtbr2b6aqamadqx7e84.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--npY0bMA6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pxtbr2b6aqamadqx7e84.png" alt="Image description" width="880" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Look for and copy the physical path which should be some thing like %SystemDrive%\inetpub\wwwroot&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6oee7Vw1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vph3pwkgbhje6sigw3hk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6oee7Vw1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vph3pwkgbhje6sigw3hk.png" alt="Image description" width="880" height="459"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Open &lt;strong&gt;File Explorer&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--oqjgWPRd--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/i2obirg0i5i71jlgtpdl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--oqjgWPRd--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/i2obirg0i5i71jlgtpdl.png" alt="Image description" width="880" height="446"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on &lt;strong&gt;This PC&lt;/strong&gt; &amp;gt;  &lt;strong&gt;Windows (C)&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--3n2PXvu2--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/nneo2oi9uxsk2zb0rx7q.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--3n2PXvu2--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/nneo2oi9uxsk2zb0rx7q.png" alt="Image description" width="880" height="455"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--7tgLDWn9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/b0s2d2mx0eegxsb9nu6d.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7tgLDWn9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/b0s2d2mx0eegxsb9nu6d.png" alt="Image description" width="880" height="441"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on &lt;strong&gt;inetpub&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1smNwgG_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ade6kztfbuno0tseoxk9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1smNwgG_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ade6kztfbuno0tseoxk9.png" alt="Image description" width="880" height="455"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on &lt;strong&gt;wwwroot&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--p48Opo8M--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/p3oo4xr90p8tzh9fvl4w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--p48Opo8M--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/p3oo4xr90p8tzh9fvl4w.png" alt="Image description" width="880" height="453"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s---qSzn8b2--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7o3gcbic4nkvro6n9uag.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---qSzn8b2--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7o3gcbic4nkvro6n9uag.png" alt="Image description" width="880" height="453"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Right click on the empty space and select New then click on Net Text Document.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--BHtyFA2y--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fdvo75z2pi36qrz3buh8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--BHtyFA2y--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fdvo75z2pi36qrz3buh8.png" alt="Image description" width="880" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Enter the following text with no markup into the text document.&lt;br&gt;
&lt;strong&gt;"Welcome to my initial web page"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--quREILtU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/t69woxy3wcom04738y8c.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--quREILtU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/t69woxy3wcom04738y8c.png" alt="Image description" width="880" height="455"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click &lt;strong&gt;File&lt;/strong&gt; and save as &lt;strong&gt;index.html&lt;/strong&gt;&lt;br&gt;
Change the Save as type as &lt;strong&gt;All Files&lt;/strong&gt;.&lt;br&gt;
Click &lt;strong&gt;Save&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--zv6M051R--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/r6vhi40zc9qoyxw8s8r1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--zv6M051R--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/r6vhi40zc9qoyxw8s8r1.png" alt="Image description" width="880" height="458"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Hdlo0w0W--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6jqsbkybf9vxt1ubxo51.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Hdlo0w0W--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6jqsbkybf9vxt1ubxo51.png" alt="Image description" width="880" height="453"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This will take precedents over the &lt;strong&gt;adminblock file&lt;/strong&gt; and you should now see this page as your home page when you go to the public IP address.&lt;br&gt;
  Go to the main &lt;strong&gt;Menu&lt;/strong&gt; of your Virtual Machine and click on &lt;strong&gt;internet explorer&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--wZCP2pap--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6rfshxu23fchrqckwurs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--wZCP2pap--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6rfshxu23fchrqckwurs.png" alt="Image description" width="880" height="479"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Impute the &lt;strong&gt;Public IP&lt;/strong&gt; address from your RDP and click enter. You should see the home page you created with the text &lt;strong&gt;"Welcome to my initial web page"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--YV8zZgLK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/n0z7yha98msxpmheairm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--YV8zZgLK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/n0z7yha98msxpmheairm.png" alt="Image description" width="880" height="473"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you got to this point, I want to say a big &lt;strong&gt;Well Done&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--_yole1Nc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/y0pxa9tdrd91ysr8dhzw.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--_yole1Nc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/y0pxa9tdrd91ysr8dhzw.gif" alt="Image description" width="494" height="212"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>virtualmachine</category>
      <category>cloudskills</category>
      <category>linux</category>
      <category>azure</category>
    </item>
    <item>
      <title>CLOUD COMPUTING MODELS, WHAT TO CHOOSE AND WHY</title>
      <dc:creator>Isdonobi</dc:creator>
      <pubDate>Thu, 27 Jan 2022 14:54:36 +0000</pubDate>
      <link>https://dev.to/isdonobi/cloud-computing-models-what-to-choose-and-why-39o4</link>
      <guid>https://dev.to/isdonobi/cloud-computing-models-what-to-choose-and-why-39o4</guid>
      <description>&lt;p&gt;Changes are happening and it’s happening very fast, businesses are been over stressed in maintaining a robust and cost-effective IT infrastructure, so as to adapt to the ever-growing changes.&lt;br&gt;
    Cloud services have been among the most popular platforms lately, with companies like Microsoft, Amazon, Google leading the way for technology growth.&lt;br&gt;
    Cloud computing is providing developers and IT departments with the ability to focus on what matters the must and remove layers of procurement, maintenance and capacity planning. Which will enable the organization to cut cost and minimize the time spent on mundane IT tasks.&lt;br&gt;
    Instead of maintaining hardware, you can focus on innovation and scale your application on demand. More and more enterprise are turning to cloud to enable them re-invent their applications and take advantage of a new deployment strategy. Which can help the organization save up to 30% by implementing a cloud-base service.&lt;br&gt;
    Cloud computing services comes mainly in three type of service models;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Infrastructure as a Services (IaaS)&lt;/li&gt;
&lt;li&gt;Software as a Service (SaaS)&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Platform as a Service (PaaS)&lt;/p&gt;

&lt;p&gt;Each of this cloud models have its own set of benefits, which will serve the needs of various business. Choosing between them requires an understanding of these cloud models. When organization evaluate there needs and find out how a chosen model can deliver the organization set of wok flows.&lt;br&gt;
The following are a brief description of the three types of cloud computing models.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;1. IaaS&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6DkrteCA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/rz5f9gyhuk4ouarn0hg4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6DkrteCA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/rz5f9gyhuk4ouarn0hg4.png" alt="Image description" width="880" height="587"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Infrastructure as a service sometimes abbreviated as IaaS, offers a standardized way of acquiring computing capabilities on demand and over the web, the IaaS cloud provider or vendor gives you an entire range of computing infrastructure such as storage, virtual servers, process power, networking hardware, along with maintenance and support.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ZkOfL0OR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qoyhmq15gll3he27bt6g.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZkOfL0OR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qoyhmq15gll3he27bt6g.jpg" alt="Image description" width="600" height="380"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;2. SaaS&lt;/strong&gt;
&lt;/h2&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;The model Software as a Service or SaaS, gives quick access to cloud-based web applications. The vendor controls the entire computing Stack. Which is accessible using a web browser.
This relieves your organization from the constant pressure of software maintenance, infrastructure management, network security, data availability and all the other issues involve with keeping application up and running. The SaaS billing is also a “pay as you go”, which is typically base on factors such as number of users, usage time, amount of data stored, and number of transactions processed. 
Development environments can also be done as SaaS. Software developers receive access to the platform where they can build, test and deploy a product, configure it functionality with build in tools and templates.
Examples of SaaS
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;1. Google Work Space&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--BBu-cp8V--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7a5zmnhlo71wuawo15pd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--BBu-cp8V--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7a5zmnhlo71wuawo15pd.png" alt="Image description" width="308" height="164"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This top cloud service provide business with access to management, communication and organizational tools and uses cloud for data computing. Gmail, google drive, google form, google sheet, hangout are all SaaS tools that can be access anytime and anywhere.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Microsoft Office 365&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--bkjIM5EP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cjnzyg35rel0t6s5505w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--bkjIM5EP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cjnzyg35rel0t6s5505w.png" alt="Image description" width="291" height="173"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The series of web services which gives business owner and individuals a platform with tools directly from their web browsers. Users can access Microsoft editing tools business email, communication instruments and documentation software.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Sales Force&lt;/strong&gt;&lt;br&gt;
This is the most popular CRM (customer Relationship Management) in the market that unites marketing, communication and e-commerce. Through cloud computing Sale Force have been able to use the benefits of SaaS to provide to various business access to its services and internal data. Business owners can keep track of there sales, client relations, communications and relevant tasks from any device. The interesting thing about sales force is that it can be integrated into the website. The information about incoming leads will be sent to the platform automatically.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ZW2DYMMl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x3p8evtn6t149plvsy1b.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZW2DYMMl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x3p8evtn6t149plvsy1b.jpg" alt="Image description" width="780" height="496"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;3. PaaS&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;PaaS which is also stand for Platform as a Service is a halfway between IaaS and SaaS. It offers a partway to a service which allows organization of build, deliver and manage applications with out the need of installing and working with IDE’s (Integrated Development Environments) which are often very expensive. The PaaS model of service makes it easier for developers to focus on writing codes and create applications without worrying about time consuming IT infrastructure such as providing servers storage and backup. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--8DymfGNX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l5nmwisdtc7b67m5a5c5.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--8DymfGNX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l5nmwisdtc7b67m5a5c5.jpg" alt="Image description" width="537" height="357"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Additionally, users can often customize the features they want included with there subscription. PaaS brings much more value to cloud, enabling organization to reduce their management overhead and lower cost. With the help of PaaS computing model, it is now easier for organizations to innovate and scale their services on demand.&lt;/p&gt;

&lt;p&gt;A successful move to cloud isn’t about IaaS or PaaS or SaaS. For any organization, the trick is knowing which model suite your business needs.&lt;br&gt;
    To summarize, &lt;strong&gt;SaaS&lt;/strong&gt; would suit your business well if you need cloud base software like email, CRM and productivity tools. &lt;strong&gt;IaaS&lt;/strong&gt; is the perfect option if you require a complete virtual computing plat-form with powerful resources. If your requirement is to develop and test your software and applications, then it better to opt for &lt;strong&gt;PaaS&lt;/strong&gt;. A long migration road map ad good planning will help you achieve value from the cloud.&lt;/p&gt;

</description>
      <category>cloud</category>
      <category>azure</category>
      <category>cloudmodels</category>
      <category>linux</category>
    </item>
    <item>
      <title> AN OVERVIEW OF CLOUD COMPUING</title>
      <dc:creator>Isdonobi</dc:creator>
      <pubDate>Wed, 26 Jan 2022 11:47:17 +0000</pubDate>
      <link>https://dev.to/isdonobi/an-overview-of-cloud-compuing-2o8l</link>
      <guid>https://dev.to/isdonobi/an-overview-of-cloud-compuing-2o8l</guid>
      <description>&lt;p&gt;I remember the first time i heard about the cloud was icloud. It was fascinating for me, because how would someone save something in the cloud? Well at that point in time I thought my pictures, messages, contact and notes where stored in the literal cloud, and it was something I kept wondering how it’s been done. At that point I didn’t know that my contact, messages, notes and pictures where known as data. I merely refer to data as megabytes and gigabyte which is been given by my cell phone network provider and the amount of space my phone memory or memory card consumes &lt;/p&gt;

&lt;p&gt;When I came to know about cloud, it was more astonishing and as I made my research and went through the learning process about cloud, I came to understand what cloud is all about, it functions and uses. Let’s talk about an overview of cloud to get the basic knowledge of cloud computing.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;You might wonder what cloud is all about. Well, think of the cloud as a disk drive or hard drive that is own by a company like Microsoft or google, which stores all your files in a remote location, which can be called a server Farm. The cloud makes it possible to have access to your photos, videos or documents from any computer and sometimes a Smart phone or a tablet with an internet connection. Many of us make use of cloud computing every day with site like Facebook, Netflix or Gmail.

Let’s define cloud computing. Cloud computing simply means storing and accessing data and programs over the internet instead of the computer’s hard drive. Cloud computing can also be defined as hardware and software service from a provider over the internet.

The name cloud computing is influenced by cloud symbols, which is often been used to represent the service and networking infrastructure that makes up the internet as “the cloud” was often use as a slang in the world of tech. As more computing process moved to the servers and infrastructure part of the internet, people started making use of the word “the cloud” as a short hand to express where the computing process was taking place. Today people widely accept the term “the cloud” for this style of computing.

Examples of cloud computing you are probably using are;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
  
  
  &lt;strong&gt;GOOGLE DRIVE&lt;/strong&gt;
&lt;/h2&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;   Google Drive is a purely cloud computing services. The storage is a free web-bases processor. One perk of Google Drive is the fact that it users do not need to download their project(s) to there computer. But can make necessary changes by editing and saving on the internet. Another interesting thing about the google drive is that several users are able to edit a document at the same time, with changes been visible by everyone in real-time. Most Google service can be classified cloud computing such as Gmail, Google Calendar, Google Map and so on. Google drive is not only accessible through the use of desktop computer, but also tablet and smart phones.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
  
  
  &lt;strong&gt;Apple iCloud&lt;/strong&gt;
&lt;/h2&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;      The icloud is a computing services created by apple. Users are able to store, backup, and synchronize their mail, contact, calendar, photos, music, document and much more. Unlike Google Drive which merely requires internet access, iCloud requires an iOS, iPadOS, Mac OS or windows device (window users have to install the icloud control panel). The icloud computing application is more driven towards individuality rather that group work just like google drive.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
  
  
  &lt;strong&gt;Drop Box&lt;/strong&gt;
&lt;/h2&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;      Operated by Drop Box inc, the service which is simple reliable for file-sync and can store files. It enables users to share certain file and folders across the internet, synching any change that are made in other to provide an opportunity for group collaboration.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
  
  
  &lt;strong&gt;Amazon Drive&lt;/strong&gt;
&lt;/h2&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;     The cloud drive service was created by Amazon in 2011. The file which is been uploaded using a computer can be access via the internet. One of the positive of Amazon Drive can be found when a user wants to store large files.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
  
  
  &lt;strong&gt;Microsoft Azure&lt;/strong&gt;
&lt;/h2&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;      The Azure cloud computing service has been regarded as one of the greatest cloud services platforms accessible, when you look at Microsoft’s extensive suite of services. The Microsoft Azure extensive list of offered services is sufficient to meet the demands of any company or organization in any sector.

Microsoft Azure cloud service was first published in 2010, and since then it has showed that it can be a reliable solution for businesses which are trying to digitally change. One of the interesting things about Microsoft Azure cloud computing service is that you man operate service on the cloud or mix them with any of your current infrastructures.


The cloud computing has taken away or reduce the presence of a physical storage which in turn safe cost. Since the cloud service providers mostly put their service on a pay as you go, which is cost effective for users. And the companies or organization don’t need to always update or maintain their own servers as the cloud vendor are willing to do that.

Now small business that might not be able to afford their own internal infrastructure can now outsource this infrastructure. The cloud has also made it easier for companies to operate internationally, because employees and customer can access same file from any location.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>cloud</category>
    </item>
  </channel>
</rss>
