<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>virtual machine Archives - Apostolidis Cloud Corner</title>
	<atom:link href="https://www.cloudcorner.gr/tag/virtual-machine/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.cloudcorner.gr/tag/virtual-machine/</link>
	<description>Remarks from a Cloud Architect encounters</description>
	<lastBuildDate>Fri, 24 Sep 2021 09:38:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>

<image>
	<url>https://www.cloudcorner.gr/wp-content/uploads/2021/04/cropped-cloudcorner2-32x32.png</url>
	<title>virtual machine Archives - Apostolidis Cloud Corner</title>
	<link>https://www.cloudcorner.gr/tag/virtual-machine/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Deploy VM from Azure SIG in new Resource Group</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/deploy-vm-from-azure-sig-in-new-resource-group/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/deploy-vm-from-azure-sig-in-new-resource-group/#comments</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Thu, 04 Feb 2021 15:03:12 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[arm]]></category>
		<category><![CDATA[arm template]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[azurerm]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[nsg]]></category>
		<category><![CDATA[resource group]]></category>
		<category><![CDATA[SIG]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[vm]]></category>
		<category><![CDATA[vnet]]></category>
		<guid isPermaLink="false">https://www.e-apostolidis.gr/?p=3753</guid>

					<description><![CDATA[<p>Deploy VM from Azure SIG in new Resource Group Pantelis ApostolidisPantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/deploy-vm-from-azure-sig-in-new-resource-group/">Deploy VM from Azure SIG in new Resource Group</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">Deploy VM from Azure SIG in new Resource Group</h2>



<p>This is a template that first creates a Resource Group, and then it deploys a Virtual Machine from an image version of the Shared Image Gallery. It provides the Public IP and Hostname for outputs. </p>
<p>Currently it only asks for the SIG image version and an environment value to create the naming convention of the resources. </p>
<p>GitHub: <a href="https://github.com/proximagr/ARMTemplates/blob/master/VM-from-SIG-in-new-RG/VM-from-SIG-in-new-RG.json">https://github.com/proximagr/ARMTemplates/blob/master/VM-from-SIG-in-new-RG/VM-from-SIG-in-new-RG.json</a></p>



<pre class="EnlighterJSRAW" data-enlighter-language="json" data-enlighter-theme="bootstrap4">{
    "$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "galleryimageversion": {
            "type": "string",
            "defaultValue": "10.0.2"
        },
        "envname": {
            "type": "string",
            "defaultValue": "test"
        }
    },
    "variables": {
        "basename": "[concat(parameters('envname'),substring(deployment().name,0,6))]",
        "rgname": "[concat('rg-', substring(variables('basename'), 0, 10))]",
        "region": "francecentral"
    },
    "resources": [
        {
            "name": "[variables('rgname')]",
            "type": "Microsoft.Resources/resourceGroups",
            "apiVersion": "2019-10-01",
            "location": "[variables('region')]",
            "dependsOn": [
            ],
            "tags": {
            }
        },
        {
            "type": "Microsoft.Resources/deployments",
            "resourceGroup": "[variables('rgname')]",
            "dependsOn": [
                "[resourceId('Microsoft.Resources/resourceGroups',variables('rgname'))]"
            ],
            "apiVersion": "2019-10-01",
            "name": "nestedTemplate1",
            "properties": {
                "expressionEvaluationOptions": {
                    "scope": "inner"
                },
                "mode": "Incremental",
                "parameters": {
                    "galleryImageVersionName": {
                        "value": "[parameters('galleryimageversion')]"
                    },
                    "envname": {
                        "value": "[parameters('envname')]"
                    }

                },
                "template": {
                    "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
                    "contentVersion": "1.0.0.0",
                    "parameters": {
                        "galleryImageVersionName": {
                            "type": "string"
                        },
                        "envname": {
                            "type": "string"
                        }
                    },
                    "variables": {
                        "basename": "[concat(parameters('envname'),substring(deployment().name,0,6))]",
                        "pubipname": "[concat( 'pip-',variables('basename'))]",
                        "pubipdns": "[concat( 'vm-',variables('basename'))]",
                        "region": "francecentral",
                        "adminUsername": "uiadmin",
                        "adminPassword": "ThisIs1Password!",
                        "galleryName": "demosig",
                        "galleryImageDefinitionName": "demoid",
                        "nicName": "[concat( 'nic-',variables('basename'))]",
                        "addressPrefix": "10.0.0.0/24",
                        "subnetName": "[concat( 'sub-',variables('basename'))]",
                        "subnetPrefix": "10.0.0.0/24",
                        "vmName": "[concat( 'vm-',variables('basename'))]",
                        "virtualNetworkName": "[concat( 'vnet-',variables('basename'))]",
                        "subnetRef": "[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('virtualNetworkName'), variables('subnetName'))]",
                        "networkSecurityGroupName": "[concat( 'nsg-',variables('basename'))]"
                    },
                    "resources": [
                        {
                            "name": "[variables('pubipname')]",
                            "type": "Microsoft.Network/publicIPAddresses",
                            "apiVersion": "2019-11-01",
                            "location": "[variables('region')]",
                            "tags": {
                                "displayName": "publicIPAddress1"
                            },
                            "properties": {
                                "publicIPAllocationMethod": "Static",
                                "dnsSettings": {
                                    "domainNameLabel": "[variables('pubipdns')]"
                                }
                            }
                        },
                        {
                            "comments": "Simple Network Security Group for subnet [variables('subnetName')]",
                            "type": "Microsoft.Network/networkSecurityGroups",
                            "apiVersion": "2019-08-01",
                            "name": "[variables('networkSecurityGroupName')]",
                            "location": "[variables('region')]",
                            "properties": {
                                "securityRules": [
                                    {
                                        "name": "default-allow-22",
                                        "properties": {
                                            "priority": 1000,
                                            "access": "Allow",
                                            "direction": "Inbound",
                                            "destinationPortRange": "22",
                                            "protocol": "Tcp",
                                            "sourceAddressPrefix": "*",
                                            "sourcePortRange": "*",
                                            "destinationAddressPrefix": "*"
                                        }
                                    },
                                    {
                                        "name": "default-allow-3389",
                                        "properties": {
                                            "priority": 1001,
                                            "access": "Allow",
                                            "direction": "Inbound",
                                            "destinationPortRange": "3389",
                                            "protocol": "Tcp",
                                            "sourceAddressPrefix": "*",
                                            "sourcePortRange": "*",
                                            "destinationAddressPrefix": "*"
                                        }
                                    }
                                ]
                            }
                        },
                        {
                            "type": "Microsoft.Network/virtualNetworks",
                            "name": "[variables('virtualNetworkName')]",
                            "apiVersion": "2016-03-30",
                            "location": "[variables('region')]",
                            "dependsOn": [
                                "[resourceId('Microsoft.Network/networkSecurityGroups', variables('networkSecurityGroupName'))]"
                            ],
                            "properties": {
                                "addressSpace": {
                                    "addressPrefixes": [
                                        "[variables('addressPrefix')]"
                                    ]
                                },
                                "subnets": [
                                    {
                                        "name": "[variables('subnetName')]",
                                        "properties": {
                                            "addressPrefix": "[variables('subnetPrefix')]",
                                            "networkSecurityGroup": {
                                                "id": "[resourceId('Microsoft.Network/networkSecurityGroups', variables('networkSecurityGroupName'))]"
                                            }
                                        }
                                    }
                                ]
                            }
                        },
                        {
                            "type": "Microsoft.Network/networkInterfaces",
                            "name": "[variables('nicName')]",
                            "apiVersion": "2016-03-30",
                            "location": "[variables('region')]",
                            "properties": {
                                "ipConfigurations": [
                                    {
                                        "name": "ipconfig1",
                                        "properties": {
                                            "privateIPAllocationMethod": "Dynamic",
                                            "publicIPAddress": {
                                                "id": "[resourceId('Microsoft.Network/publicIPAddresses',variables('pubipname'))]"
                                            },
                                            "subnet": {
                                                "id": "[variables('subnetRef')]"
                                            }
                                        }
                                    }
                                ]
                            },
                            "dependsOn": [
                                "[resourceId('Microsoft.Network/publicIPAddresses/', variables('pubipname'))]",
                                "[resourceId('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]"
                            ]
                        },
                        {
                            "type": "Microsoft.Compute/virtualMachines",
                            "name": "[variables('vmName')]",
                            "apiVersion": "2019-07-01",
                            "location": "[variables('region')]",
                            "properties": {
                                "hardwareProfile": {
                                    "vmSize": "Standard_F8s_v2"
                                },
                                "osProfile": {
                                    "computerName": "[variables('vmName')]",
                                    "adminUsername": "[variables('adminUsername')]",
                                    "adminPassword": "[variables('adminPassword')]"
                                },
                                "storageProfile": {
                                    "imageReference": {
                                        "id": "[resourceId('Microsoft.Compute/galleries/images/versions', variables('galleryName'), variables('galleryImageDefinitionName'), parameters('galleryImageVersionName'))]"
                                    }
                                },
                                "networkProfile": {
                                    "networkInterfaces": [
                                        {
                                            "id": "[resourceId('Microsoft.Network/networkInterfaces',variables('nicName'))]"
                                        }
                                    ]
                                }
                            },
                            "dependsOn": [
                                "[resourceId('Microsoft.Network/networkInterfaces/', variables('nicName'))]"
                            ]
                        }
                    ],
                    "outputs": {
                        "publicipn": {
                            "type": "string",
                            "value": "[reference(variables('pubipname')).dnsSettings.fqdn]"
                        },
                        "publicipa": {
                            "type": "string",
                            "value": "[reference(variables('pubipname')).ipAddress]"
                        }
                    }
                }
            }
        }
    ],
    "outputs": {
        "hostname": {
            "type": "string",
            "value": "[reference('nestedTemplate1').outputs.publicipn.value]"
        },
        "ipaddress": {
            "type": "string",
            "value": "[reference('nestedTemplate1').outputs.publicipa.value]"
        }
    }
}</pre>
<p> </p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author"><div class="saboxplugin-tab"><div class="saboxplugin-gravatar"><img decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div><div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div><div class="saboxplugin-desc"><div itemprop="description"><p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div></div><div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div><div class="clearfix"></div><div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:p&#114;oximag&#114;&#064;&#104;o&#116;m&#097;&#105;l.c&#111;&#109;" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div></div></div><p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fdeploy-vm-from-azure-sig-in-new-resource-group%2F&amp;linkname=Deploy%20VM%20from%20Azure%20SIG%20in%20new%20Resource%20Group" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fdeploy-vm-from-azure-sig-in-new-resource-group%2F&amp;linkname=Deploy%20VM%20from%20Azure%20SIG%20in%20new%20Resource%20Group" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fdeploy-vm-from-azure-sig-in-new-resource-group%2F&#038;title=Deploy%20VM%20from%20Azure%20SIG%20in%20new%20Resource%20Group" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/deploy-vm-from-azure-sig-in-new-resource-group/" data-a2a-title="Deploy VM from Azure SIG in new Resource Group"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/deploy-vm-from-azure-sig-in-new-resource-group/">Deploy VM from Azure SIG in new Resource Group</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/deploy-vm-from-azure-sig-in-new-resource-group/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Move your Azure VM across regions</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/move-your-azure-vm-across-regions/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/move-your-azure-vm-across-regions/#comments</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Tue, 15 Dec 2020 14:06:06 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[azure mv]]></category>
		<category><![CDATA[azure resource mover]]></category>
		<category><![CDATA[azure rm]]></category>
		<category><![CDATA[move resources]]></category>
		<category><![CDATA[move vm]]></category>
		<category><![CDATA[virtual machine]]></category>
		<guid isPermaLink="false">https://www.e-apostolidis.gr/?p=3717</guid>

					<description><![CDATA[<p>Move your Azure VM across regions Azure Resource Mover makes it really easy to move your resources, like Azure VMs,</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/move-your-azure-vm-across-regions/">Move your Azure VM across regions</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1>Move your Azure VM across regions</h1>
<p>Azure Resource Mover makes it really easy to move your resources, like Azure VMs, across regions. There are some minor details you need to take care to have the whole process run smoothly.</p>
<p>Let&#8217;s see how we can move our VM from a region to an other with simple steps</p>
<ol>
<li>At the Azure Portal search for &#8220;Azure Resource Mover&#8221;</li>
</ol>
<p><img decoding="async" width="241" height="121" class="alignnone wp-image-3722 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2020/12/Pasted-into-1-4.png" /></p>
<p>2. At the Azure Resource Mover&#8221; wizard click &#8220;Move across regions&#8221;</p>
<p><img fetchpriority="high" decoding="async" class="alignnone wp-image-3721 " src="https://www.e-apostolidis.gr/wp-content/uploads/2020/12/Pasted-into-1-3.png" width="748" height="469" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-1-3.png 1123w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-1-3-300x188.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-1-3-1024x642.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-1-3-768x481.png 768w" sizes="(max-width: 748px) 100vw, 748px" /></p>
<p>3. Select the source &amp; target region</p>
<p><img loading="lazy" decoding="async" width="787" height="519" class="alignnone wp-image-3727 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions.png" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions.png 787w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-300x198.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-768x506.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-120x80.png 120w" sizes="auto, (max-width: 787px) 100vw, 787px" /></p>
<p>4. select the resources you want to move</p>
<p><img loading="lazy" decoding="async" width="768" height="440" class="alignnone wp-image-3726 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2020/12/Pasted-into-1-8.png" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-1-8.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-1-8-300x172.png 300w" sizes="auto, (max-width: 768px) 100vw, 768px" /></p>
<p>5. Accept the notification and start he process and go to the &#8220;Across Regions&#8221; option and press &#8220;Validate dependencies&#8221; button in the middle</p>
<p><img loading="lazy" decoding="async" width="1151" height="567" class="alignnone wp-image-3728 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-1.png" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-1.png 1151w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-1-300x148.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-1-1024x504.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-1-768x378.png 768w" sizes="auto, (max-width: 1151px) 100vw, 1151px" /></p>
<p>6. After the validation, check the Issues column of all resources and resolve if any.</p>
<p><img loading="lazy" decoding="async" width="989" height="251" class="alignnone wp-image-3730 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-2.png" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-2.png 989w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-2-300x76.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-2-768x195.png 768w" sizes="auto, (max-width: 989px) 100vw, 989px" /></p>
<p>7. <strong>First we need to move the Resource Groups only. </strong>The move process has four steps, the Prepare, the Initiate Move , the Commit move and finally delete the source resources. <strong> So, select only all the &#8220;resources groups&#8221;</strong> and press &#8220;Prepare&#8221;</p>
<p><img loading="lazy" decoding="async" width="867" height="533" class="alignnone wp-image-3733 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-5.png" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-5.png 867w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-5-300x184.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-5-768x472.png 768w" sizes="auto, (max-width: 867px) 100vw, 867px" /></p>
<p>8. Select again the Resource Groups and press &#8220;Initiate Move&#8221;</p>
<p><img loading="lazy" decoding="async" width="909" height="532" class="alignnone wp-image-3734 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-6.png" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-6.png 909w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-6-300x176.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-6-768x449.png 768w" sizes="auto, (max-width: 909px) 100vw, 909px" /></p>
<p>9. Select gain the Resource Groups and press &#8220;Commit Move&#8221;</p>
<p><img loading="lazy" decoding="async" width="921" height="537" class="alignnone wp-image-3736 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-8.png" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-8.png 921w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-8-300x175.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-8-768x448.png 768w" sizes="auto, (max-width: 921px) 100vw, 921px" /></p>
<p>10. Now the Resource Groups are created at the target region, and is at pending deletion at the source. We can proceed with the rest resources. Select the rest resources and go through the same process, the Prepare, the Initiate Move , the Commit move and finally delete the source resources.</p>
<p><img loading="lazy" decoding="async" width="938" height="543" class="alignnone wp-image-3737 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-9.png" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-9.png 938w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-9-300x174.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-9-768x445.png 768w" sizes="auto, (max-width: 938px) 100vw, 938px" /></p>
<p>At the Prepare state, the Azure Site Recovery agent is installed at the VM and the data are replicated to the target region. This takes a lot of time, depending on the size of the data but it does not affect the VM.</p>
<p><strong>Sneak peak</strong>: You can view the process of the VM, by navigating to the VM blade and go to the Disaster Recovery setting</p>
<p><img loading="lazy" decoding="async" width="955" height="913" class="alignnone wp-image-3742 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-11.png" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-11.png 955w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-11-300x287.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-11-768x734.png 768w" sizes="auto, (max-width: 955px) 100vw, 955px" /></p>
<p>11. Once all resources are in &#8220;Initiate move&#8221; pending state, select them and press &#8220;Initiate Move&#8221;. ATTENTION: at this state, there will be downtime to move the VMs. The source VMs will show down, a final data sync will be performed and finally the target VMs will start.</p>
<p><img loading="lazy" decoding="async" width="900" height="499" class="alignnone wp-image-3744 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-13.png" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-13.png 900w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-13-300x166.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-13-768x426.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-13-360x200.png 360w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>12. Wait until all resources are at the Commit Move state, select them and press &#8220;Commit Move&#8221;</p>
<p>at this state, we can see that we have two resource groups, the source and the target:</p>
<p><img loading="lazy" decoding="async" width="303" height="76" class="alignnone wp-image-3746 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-14.png" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-14.png 303w, https://www.cloudcorner.gr/wp-content/uploads/2020/12/Pasted-into-Move-your-Azure-VM-across-regions-14-300x75.png 300w" sizes="auto, (max-width: 303px) 100vw, 303px" /></p>
<p>At the source resource group, the VMs will be stopped and at the target started. <strong>Note here that the target IP is not the same as the Source. Your Public IPs will be altered.</strong></p>
<p>13. After the commit move, you will need to delete the source resources manually.</p>
<p>More info at: <a href="https://docs.microsoft.com/en-us/azure/resource-mover/about-move-process">About the move process in Azure Resource Mover | Microsoft Docs</a></p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author">
<div class="saboxplugin-tab">
<div class="saboxplugin-gravatar"><img loading="lazy" decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div>
<div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div>
<div class="saboxplugin-desc">
<div itemprop="description">
<p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div>
</div>
<div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div>
<div class="clearfix"></div>
<div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:p&#114;&#111;&#120;&#105;&#109;ag&#114;&#064;&#104;&#111;tm&#097;i&#108;.&#099;om" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div>
</div>
</div>
<p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fmove-your-azure-vm-across-regions%2F&amp;linkname=Move%20your%20Azure%20VM%20across%20regions" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fmove-your-azure-vm-across-regions%2F&amp;linkname=Move%20your%20Azure%20VM%20across%20regions" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fmove-your-azure-vm-across-regions%2F&#038;title=Move%20your%20Azure%20VM%20across%20regions" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/move-your-azure-vm-across-regions/" data-a2a-title="Move your Azure VM across regions"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/move-your-azure-vm-across-regions/">Move your Azure VM across regions</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/move-your-azure-vm-across-regions/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>VMWare Workstation Player on Azure VM for testing</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/vmware-workstation-player-on-azure-vm-for-testing/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/vmware-workstation-player-on-azure-vm-for-testing/#comments</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Thu, 19 Nov 2020 10:20:55 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[azure vm]]></category>
		<category><![CDATA[nested virtualization]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vmware workstation player]]></category>
		<guid isPermaLink="false">https://www.e-apostolidis.gr/?p=3707</guid>

					<description><![CDATA[<p>VMWare Workstation Player on Azure VM for testing &#124; Updated September 2021 I had a request to run VMWare Workstation</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/vmware-workstation-player-on-azure-vm-for-testing/">VMWare Workstation Player on Azure VM for testing</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1>VMWare Workstation Player on Azure VM for testing | Updated September 2021</h1>
<p>I had a request to run VMWare Workstation Player on an Azure VM for some testing and labs. Challenge accepted!</p>
<p><strong>UPDATE: Since version 15.5, VMware Workstation &amp; Player Supports Host Hyper-V Mode. Find out more <a href="https://blogs.vmware.com/workstation/2020/05/vmware-workstation-now-supports-hyper-v-mode.html">here</a> &amp; <a href="https://www.vmware.com/products/workstation-player.html">here</a></strong></p>
<p><img loading="lazy" decoding="async" id="thepasted-5" class="alignnone wp-image-3802 " src="/wp-content/uploads/2020/11/Pasted-3.png" width="693" height="203" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-3.png 1136w, https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-3-300x88.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-3-1024x299.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-3-768x224.png 768w" sizes="auto, (max-width: 693px) 100vw, 693px" /></p>
<p>Demo environment:</p>
<p>Azure VM Standard <strong>E4s_v4 Gen 1</strong> running <strong>Windows 10 2004 Enterprise </strong></p>
<p>I tested it also with <strong>Windows 10 20H2 Enterprise, </strong>and since the Hyper-V mode is supported, it should run at all Windows Client &amp; Server OSs that support nested virtualization and to all <strong>E_v4 &amp; D_v4 Azure VM Serries</strong>.</p>
<p>To enable the Hyper-V Mode Support we need first to enable Hyper-V at the Windows Host via the add/remove features GUIor PowerShell</p>
<p>Via PowerShell Run:</p>
<p>Enable-WindowsOptionalFeature -Online -FeatureName HypervisorPlatform -All<br />
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All</p>
<p><img loading="lazy" decoding="async" width="1324" height="365" id="thepasted-4" class="alignnone wp-image-3800 size-full" src="/wp-content/uploads/2020/11/Pasted-1.png" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-1.png 1324w, https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-1-300x83.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-1-1024x282.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-1-768x212.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-1-1320x364.png 1320w" sizes="auto, (max-width: 1324px) 100vw, 1324px" /></p>
<p>and restart</p>
<p>Installed <strong>VMWare Workstation Player 16.0 free for non-commercial use</strong>, download from <a href="https://customerconnect.vmware.com/en/downloads/info/slug/desktop_end_user_computing/vmware_workstation_player/16_0">here</a>: <a href="https://customerconnect.vmware.com/en/downloads/info/slug/desktop_end_user_computing/vmware_workstation_player/16_0">VMware Workstation Player &#8211; VMware Customer Connect</a></p>
<p>After the installation, I opened the VMWare Workstation Player and I managed to set up and run a Windows 10 VM.</p>
<p><img loading="lazy" decoding="async" width="1381" height="1661" class="alignnone wp-image-3710 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2020/11/Pasted-into-1-11.png" srcset="https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-into-1-11.png 1381w, https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-into-1-11-249x300.png 249w, https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-into-1-11-851x1024.png 851w, https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-into-1-11-768x924.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-into-1-11-1277x1536.png 1277w, https://www.cloudcorner.gr/wp-content/uploads/2020/11/Pasted-into-1-11-1320x1588.png 1320w" sizes="auto, (max-width: 1381px) 100vw, 1381px" /></p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author">
<div class="saboxplugin-tab">
<div class="saboxplugin-gravatar"><img loading="lazy" decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div>
<div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div>
<div class="saboxplugin-desc">
<div itemprop="description">
<p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div>
</div>
<div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div>
<div class="clearfix"></div>
<div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:&#112;&#114;o&#120;i&#109;&#097;gr&#064;ho&#116;&#109;ai&#108;&#046;&#099;om" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div>
</div>
</div>
<p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fvmware-workstation-player-on-azure-vm-for-testing%2F&amp;linkname=VMWare%20Workstation%20Player%20on%20Azure%20VM%20for%20testing" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fvmware-workstation-player-on-azure-vm-for-testing%2F&amp;linkname=VMWare%20Workstation%20Player%20on%20Azure%20VM%20for%20testing" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fvmware-workstation-player-on-azure-vm-for-testing%2F&#038;title=VMWare%20Workstation%20Player%20on%20Azure%20VM%20for%20testing" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/vmware-workstation-player-on-azure-vm-for-testing/" data-a2a-title="VMWare Workstation Player on Azure VM for testing"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/vmware-workstation-player-on-azure-vm-for-testing/">VMWare Workstation Player on Azure VM for testing</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/vmware-workstation-player-on-azure-vm-for-testing/feed/</wfw:commentRss>
			<slash:comments>21</slash:comments>
		
		
			</item>
		<item>
		<title>Azure Portal &#124; Playing with Disk Snapshot</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/azure-portal-playing-with-disk-snapshot/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/azure-portal-playing-with-disk-snapshot/#respond</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Mon, 07 Oct 2019 20:34:36 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[arm]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[azure vm]]></category>
		<category><![CDATA[azurerm]]></category>
		<category><![CDATA[disk]]></category>
		<category><![CDATA[managed disks]]></category>
		<category><![CDATA[rever snapshot]]></category>
		<category><![CDATA[snapshot]]></category>
		<category><![CDATA[swap os disk]]></category>
		<category><![CDATA[virtual machine]]></category>
		<guid isPermaLink="false">https://www.e-apostolidis.gr/?p=2196</guid>

					<description><![CDATA[<p>Azure Portal &#124; Playing with Disk Snapshot Disk Snapshot is a powerful tool to manage Azure VMs. It&#8217;s simple to</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-portal-playing-with-disk-snapshot/">Azure Portal | Playing with Disk Snapshot</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1 style="text-align: justify;">Azure Portal | Playing with Disk Snapshot</h1>
<p style="text-align: justify;">Disk Snapshot is a powerful tool to manage Azure VMs. It&#8217;s simple to create and can help the administrators in various tasks. It&#8217;s a fast and efficient way to have a crash-consistent Disk of a Virtual Machine, before performing tasks, updates, configuration changes, application installations, etc. Of course the last line of defence is the Azure Backup, but using the Snapshot you don&#8217;t need to wait the whole Backup / Restore times. With snapshots there are two main options to recover the VM. One is using the &#8220;swap OS Disk&#8221; functionality, which gives you the ease to swap the Operating System disk with one click. The other option is to create a new VIrtual Machine. Beware, if you want to make Azure VM clones, you need to generalize the VM with Sysprep and Capture the VM. Using the Snapshot option you will have an identical VM, with the same IDs.</p>
<h2 style="text-align: justify;">Snapshot</h2>
<p style="text-align: justify;">The first step is to create a snapshot from the Virtual Disk. Open the Azure VM, go to Disks, select the OS Disk and press &#8220;Create Snapshot&#8221;. You don&#8217;t actually need to stop the VM. Windows Server operating system stays fully consistent, but no one can guarantee the consistency of any databases currently running. Think of it like the Hyper V CheckPoint functionality. We make checkpoints all the time and we revert to them even in production.</p>
<p id="yLMWzuR" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-2884 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/10/img_5d9b8c4f41af1.png" alt="disk snapshot" width="773" height="359" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8c4f41af1.png 773w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8c4f41af1-300x139.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8c4f41af1-768x357.png 768w" sizes="auto, (max-width: 773px) 100vw, 773px" /></p>
<p style="text-align: justify;">The Create snapshot screen will open. Fill in a name and disk account type (Standard / Premium) and press create.</p>
<p id="Cvnyhoo" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-2885 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/10/img_5d9b8c81cf6be.png" alt="disk snapshot" width="635" height="448" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8c81cf6be.png 635w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8c81cf6be-300x212.png 300w" sizes="auto, (max-width: 635px) 100vw, 635px" /></p>
<p style="text-align: justify;">At this point I will create a folder at the VM for revision</p>
<p id="RNUFdnD" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-2886 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/10/img_5d9b8d0eef630.png" alt="disk snapshot" width="580" height="303" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8d0eef630.png 580w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8d0eef630-300x157.png 300w" sizes="auto, (max-width: 580px) 100vw, 580px" /></p>
<h2 style="text-align: justify;">Create a Disk</h2>
<p style="text-align: justify;">To make the snapshot functional, we need to create a Managed Disk resource.</p>
<p id="TCxcFbJ" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-2888 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/10/img_5d9b8dbd6c9fb.png" alt="disk snapshot" width="614" height="296" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8dbd6c9fb.png 614w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8dbd6c9fb-300x145.png 300w" sizes="auto, (max-width: 614px) 100vw, 614px" /></p>
<p style="text-align: justify;">At the Create managed disk wizard, select the Region that the Snapshot resides. Then select &#8220;Source type&#8221; Snapshot and select it. At the Size, select a disk size at least the same as the source disk.</p>
<p id="CYKOnDl" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-2889" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/10/img_5d9b8e03cea11.png" alt="disk snapshot" width="638" height="656" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8e03cea11.png 833w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8e03cea11-292x300.png 292w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8e03cea11-768x789.png 768w" sizes="auto, (max-width: 638px) 100vw, 638px" /></p>
<h2 style="text-align: justify;">Swap OS Disk</h2>
<p style="text-align: justify;">Now that we have created the managed disk, it&#8217;s time to use the Swap OS Disk functionality. We have proceeded with the Azure VM&#8217;s updates, software updates, configuration changes, and finally we need to roll back those changes. Go to the VM&#8217;s Disks and press &#8220;Swap OS Disk&#8221;</p>
<p id="pzuGeyg" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-2887" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/10/img_5d9b8d3ca65c2.png" alt="disk snapshot" width="633" height="390" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8d3ca65c2.png 852w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8d3ca65c2-300x185.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8d3ca65c2-768x472.png 768w" sizes="auto, (max-width: 633px) 100vw, 633px" /></p>
<p style="text-align: justify;">at the &#8220;Swap OS Disk&#8221; wizard, select the managed disk that we created.</p>
<p id="qmhobOc" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-2890 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/10/img_5d9b8e6658951.png" alt="disk snapshot" width="449" height="399" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8e6658951.png 449w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8e6658951-300x267.png 300w" sizes="auto, (max-width: 449px) 100vw, 449px" /></p>
<p style="text-align: justify;">In the background, the Azure Platform will stop, deallocate the VM and it will re-crate it with the selected OS disk. As you see at the next screenshot the OS disk is the managed disk that we created from teh snapshot.</p>
<p id="JASxLxW" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-2891 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/10/img_5d9b8eda544ed.png" alt="disk snapshot" width="955" height="484" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8eda544ed.png 955w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8eda544ed-300x152.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8eda544ed-768x389.png 768w" sizes="auto, (max-width: 955px) 100vw, 955px" /></p>
<p style="text-align: justify;">I Started the VM and logged in. The folder I created after the snapshot of course is missing 🙂</p>
<p style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-2892 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/10/img_5d9b8f86e1d8a.png" alt="disk snapshot" width="507" height="258" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8f86e1d8a.png 507w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8f86e1d8a-300x153.png 300w" sizes="auto, (max-width: 507px) 100vw, 507px" /></p>
<h2 style="text-align: justify;">New Azure VM</h2>
<p style="text-align: justify;">The other option is to create a new Virtual Machine using the Snapshot. As I wrote before, beware, if you want to make Azure VM clones, you need to generalize the VM with Sysprep and Capture the VM. Using the Snapshot option you will have an identical VM, with the same IDs.</p>
<p style="text-align: justify;">To create a VM from the Snapshot, just open the Managed Disk that you created from the Snapshot and press Create VM.</p>
<h2 id="YVnQUGo" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-2893 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/10/img_5d9b8fe63bbc2.png" alt="disk snapshot" width="764" height="401" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8fe63bbc2.png 764w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b8fe63bbc2-300x157.png 300w" sizes="auto, (max-width: 764px) 100vw, 764px" /></h2>
<p style="text-align: justify;">The Create a virtual machine wizard will open, and at the Operating System Image section, it will have selected the image from the disk. This process is identical to creating a new Hyper V VM from an existing virtual disk.</p>
<p id="agkkViV" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-2899 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/10/img_5d9b9dee55885.png" alt="disk snapshot" width="875" height="838" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b9dee55885.png 875w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b9dee55885-300x287.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/10/img_5d9b9dee55885-768x736.png 768w" sizes="auto, (max-width: 875px) 100vw, 875px" /></p>
<p style="text-align: justify;">Follow the Create a virtual machine wizard exactly the same as creating any Azure VM.</p>
<p>More e-apostolidis.gr posts about managed disks: <a href="https://www.e-apostolidis.gr/tag/managed-disks/">https://www.e-apostolidis.gr/tag/managed-disks/</a></p>
<p style="text-align: left;">Read more at: <a href="https://docs.microsoft.com/en-us/azure/virtual-machines/windows/managed-disks-overview#managed-disk-snapshots">https://docs.microsoft.com/en-us/azure/virtual-machines/windows/managed-disks-overview#managed-disk-snapshots</a></p>
<p>&nbsp;</p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author">
<div class="saboxplugin-tab">
<div class="saboxplugin-gravatar"><img loading="lazy" decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div>
<div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div>
<div class="saboxplugin-desc">
<div itemprop="description">
<p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div>
</div>
<div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div>
<div class="clearfix"></div>
<div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:p&#114;o&#120;&#105;&#109;agr&#064;&#104;otm&#097;il&#046;c&#111;&#109;" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div>
</div>
</div>
<p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-portal-playing-with-disk-snapshot%2F&amp;linkname=Azure%20Portal%20%7C%20Playing%20with%20Disk%20Snapshot" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-portal-playing-with-disk-snapshot%2F&amp;linkname=Azure%20Portal%20%7C%20Playing%20with%20Disk%20Snapshot" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-portal-playing-with-disk-snapshot%2F&#038;title=Azure%20Portal%20%7C%20Playing%20with%20Disk%20Snapshot" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/azure-portal-playing-with-disk-snapshot/" data-a2a-title="Azure Portal | Playing with Disk Snapshot"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-portal-playing-with-disk-snapshot/">Azure Portal | Playing with Disk Snapshot</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/azure-portal-playing-with-disk-snapshot/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Azure Monitor for VMs &#8211; Health, Performance &#038; Service Map</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/azure-monitor-for-vms-health-performance-service-map/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/azure-monitor-for-vms-health-performance-service-map/#respond</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Thu, 07 Feb 2019 13:58:51 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[azure monitor]]></category>
		<category><![CDATA[azurerm]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[log analytics]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[performance monitor]]></category>
		<category><![CDATA[service map]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[vm]]></category>
		<guid isPermaLink="false">https://www.e-apostolidis.gr/?p=2445</guid>

					<description><![CDATA[<p>Get real insights about your Windows and Linux VMs &#38; VMSSs performance and their dependencies with Azure Monitor. Integrate with</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-monitor-for-vms-health-performance-service-map/">Azure Monitor for VMs &#8211; Health, Performance &#038; Service Map</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Get real insights about your Windows and Linux VMs &amp; VMSSs performance and their dependencies with Azure Monitor. Integrate with Log Analytics for even more in depth analysis and retain the data over time. Health, Performance &amp; Service Map of your VM in a dashboard.</p>
<p id="bVhdDCA"><img loading="lazy" decoding="async" width="1637" height="855" class="alignnone size-full wp-image-2470 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c398d6e5f6.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c398d6e5f6.png 1637w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c398d6e5f6-300x157.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c398d6e5f6-768x401.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c398d6e5f6-1024x535.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c398d6e5f6-600x313.png 600w" sizes="auto, (max-width: 1637px) 100vw, 1637px" /></p>
<h2>Deploy to Single VM</h2>
<p>For a single VM, go to the VMs blade, scroll down to the &#8220;Monitoring&#8221; section, select &#8220;Insights&#8221; and press &#8220;Try now&#8221;</p>
<p id="UBWnPQw"><img loading="lazy" decoding="async" width="1381" height="485" class="alignnone size-full wp-image-2448 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5befca9f00a.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5befca9f00a.png 1381w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5befca9f00a-300x105.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5befca9f00a-768x270.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5befca9f00a-1024x360.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5befca9f00a-600x211.png 600w" sizes="auto, (max-width: 1381px) 100vw, 1381px" /></p>
<p>The Azure Monitor Insights Onboarding wizard will open. If your VM is already onboard at a Log Analytics workspace just click Enable. Otherwize select a Log Analytics workspace or <a href="https://docs.microsoft.com/en-us/azure/azure-monitor/learn/quick-create-workspace">create one.</a></p>
<p id="yyAPaYO"><img loading="lazy" decoding="async" width="811" height="746" class="alignnone size-full wp-image-2449 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5bf00d38e8f.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf00d38e8f.png 811w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf00d38e8f-300x276.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf00d38e8f-768x706.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf00d38e8f-600x552.png 600w" sizes="auto, (max-width: 811px) 100vw, 811px" /></p>
<p>You will start seeing data form the VM in about 20-30 minutes.</p>
<h2>Deploy to multiple VMs using Azure Policy</h2>
<p>For deploying to multiple VMs, the easiest way is to use Azure Policy</p>
<p>Go to the Azure Policy, select Assignments and press &#8220;Assign initiative&#8221;</p>
<p id="MNeqiRr"><img loading="lazy" decoding="async" width="520" height="317" class="alignnone size-full wp-image-2452 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5bf323455aa.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf323455aa.png 520w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf323455aa-300x183.png 300w" sizes="auto, (max-width: 520px) 100vw, 520px" /></p>
<p>The first option is the <span style="font-size: 1.0625rem;">Scope. Press the three dots &#8220;&#8230;&#8221; at the Scope field. You can choose a a Management Group, a Subscription or a Resource Group. So if you just select a Management Group (And don&#8217;t select subscription and resource group), this policy will apply to all Subscriptions under the Management Group and of course to all resources of the subscription. If you choose a Subscription (and don&#8217;t select a resource group then the policy will apply to all resources of the subscription. Finally if you choose a resource group then the policy will apply only to this resource group. Later we will see how to select specific VMs in the Subscription or Resource group.</span></p>
<p id="JanGNqi"><img loading="lazy" decoding="async" width="600" height="278" class="alignnone size-full wp-image-2454 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5bf406da69e.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf406da69e.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf406da69e-300x139.png 300w" sizes="auto, (max-width: 600px) 100vw, 600px" /></p>
<p>After selecting the Scope you can add exclusions. There you can check the VMs you don&#8217;t want this policy to apply.</p>
<p id="fFkZxHU"><img loading="lazy" decoding="async" width="815" height="157" class="alignnone size-full wp-image-2455 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5bf53425fb8.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf53425fb8.png 815w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf53425fb8-300x58.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf53425fb8-768x148.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf53425fb8-600x116.png 600w" sizes="auto, (max-width: 815px) 100vw, 815px" /></p>
<p>The next step is to select the Policy. At the BASICS section, press the three dots &#8220;&#8230;&#8221; near the &#8220;Initiative definition&#8221; and find the &#8220;Enable Azure Monitor for VMs&#8221;</p>
<p id="nRXeJuw"><img loading="lazy" decoding="async" width="832" height="160" class="alignnone size-full wp-image-2456 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5bf5453acfb.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf5453acfb.png 832w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf5453acfb-300x58.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf5453acfb-768x148.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf5453acfb-600x115.png 600w" sizes="auto, (max-width: 832px) 100vw, 832px" /></p>
<p>Next step is to configure the Parameters. There select the Log Analytics workspace that the VM will onboard, or create a new one. Optionally you can provide a list of VMs instead of adding all of them</p>
<p id="utrSWJD"><img loading="lazy" decoding="async" width="809" height="218" class="alignnone size-full wp-image-2459 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c2a45aefe4.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2a45aefe4.png 809w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2a45aefe4-300x81.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2a45aefe4-768x207.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2a45aefe4-600x162.png 600w" sizes="auto, (max-width: 809px) 100vw, 809px" /></p>
<p>Finally press Apply. Back at the Azure Policy main menu you will see the new Definition Assignment.</p>
<p id="nUjBtcJ"><img loading="lazy" decoding="async" width="1141" height="158" class="alignnone size-full wp-image-2460 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c2d7e49db4.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2d7e49db4.png 1141w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2d7e49db4-300x42.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2d7e49db4-768x106.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2d7e49db4-1024x142.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2d7e49db4-600x83.png 600w" sizes="auto, (max-width: 1141px) 100vw, 1141px" /></p>
<h2>View the Health / Performance / Service Map of the VMs</h2>
<p>To view the Azure Monitor of the VMs, go to the VM that you have enabled Insights, select the Insights blade and you will be able to see the health status not only for the common CPU. Memory, Disk,</p>
<p id="JrZsoMv"><img loading="lazy" decoding="async" width="1060" height="867" class="alignnone size-full wp-image-2461 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c2df63d05c.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2df63d05c.png 1060w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2df63d05c-300x245.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2df63d05c-768x628.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2df63d05c-1024x838.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2df63d05c-600x491.png 600w" sizes="auto, (max-width: 1060px) 100vw, 1060px" /></p>
<p>But also for the services that run inside the VM and the Azure Monitor discovered.</p>
<p id="BsWcOJI"><img loading="lazy" decoding="async" width="502" height="300" class="alignnone size-full wp-image-2462 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c2e899a90e.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2e899a90e.png 502w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2e899a90e-300x179.png 300w" sizes="auto, (max-width: 502px) 100vw, 502px" /></p>
<p>By clicking on any service you will have a list of all logs of this service</p>
<p id="UWfDlui"><img loading="lazy" decoding="async" width="899" height="129" class="alignnone size-full wp-image-2464 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c2f02bb5e2.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f02bb5e2.png 899w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f02bb5e2-300x43.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f02bb5e2-768x110.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f02bb5e2-600x86.png 600w" sizes="auto, (max-width: 899px) 100vw, 899px" /></p>
<p>At the performance section you have the ability to select time range and have performance analytics for a requisted period of time</p>
<p id="mQUfnTO"><img loading="lazy" decoding="async" width="1009" height="766" class="alignnone size-full wp-image-2465 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c2f410763d.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f410763d.png 1009w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f410763d-300x228.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f410763d-768x583.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f410763d-600x456.png 600w" sizes="auto, (max-width: 1009px) 100vw, 1009px" /></p>
<p>Finally at the MAp, you have a service map of the services and ports that are open and listening</p>
<p id="OJcYUtx"><img loading="lazy" decoding="async" width="851" height="755" class="alignnone size-full wp-image-2466 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c2f92b1c19.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f92b1c19.png 851w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f92b1c19-300x266.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f92b1c19-768x681.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f92b1c19-600x532.png 600w" sizes="auto, (max-width: 851px) 100vw, 851px" /></p>
<p>&nbsp;</p>
<p>Product Documentation: <a href="https://docs.microsoft.com/en-us/azure/azure-monitor/insights/vminsights-overview">https://docs.microsoft.com/en-us/azure/azure-monitor/insights/vminsights-overview</a></p>
<p>&nbsp;</p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author">
<div class="saboxplugin-tab">
<div class="saboxplugin-gravatar"><img loading="lazy" decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div>
<div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div>
<div class="saboxplugin-desc">
<div itemprop="description">
<p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div>
</div>
<div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div>
<div class="clearfix"></div>
<div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:&#112;&#114;&#111;xi&#109;&#097;&#103;&#114;&#064;h&#111;&#116;m&#097;i&#108;.c&#111;&#109;" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div>
</div>
</div>
<p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-monitor-for-vms-health-performance-service-map%2F&amp;linkname=Azure%20Monitor%20for%20VMs%20%E2%80%93%20Health%2C%20Performance%20%26%20Service%20Map" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-monitor-for-vms-health-performance-service-map%2F&amp;linkname=Azure%20Monitor%20for%20VMs%20%E2%80%93%20Health%2C%20Performance%20%26%20Service%20Map" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-monitor-for-vms-health-performance-service-map%2F&#038;title=Azure%20Monitor%20for%20VMs%20%E2%80%93%20Health%2C%20Performance%20%26%20Service%20Map" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/azure-monitor-for-vms-health-performance-service-map/" data-a2a-title="Azure Monitor for VMs – Health, Performance &amp; Service Map"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-monitor-for-vms-health-performance-service-map/">Azure Monitor for VMs &#8211; Health, Performance &#038; Service Map</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/azure-monitor-for-vms-health-performance-service-map/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Azure Backup &#124; Enable backup alert notifications</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/azure-backup-enable-backup-alert-notifications/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/azure-backup-enable-backup-alert-notifications/#comments</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Wed, 12 Sep 2018 13:37:57 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[alert]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[azure backup]]></category>
		<category><![CDATA[azurerm]]></category>
		<category><![CDATA[virtual machine]]></category>
		<guid isPermaLink="false">https://www.e-apostolidis.gr/?p=2109</guid>

					<description><![CDATA[<p>Azure Backup &#124; Enable backup alert notifications Azure Backup generates alerts for all backup events, such as unsuccessful backups. A</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-backup-enable-backup-alert-notifications/">Azure Backup | Enable backup alert notifications</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1 style="text-align: left;">Azure Backup | Enable backup alert notifications</h1>
<p style="text-align: justify;">Azure Backup generates alerts for all backup events, such as unsuccessful backups. A new option is to create backup alert notifications so Azure Backup will alert you firing an email when an alert is generated.</p>
<p style="text-align: justify;">To enable the backup alert notifications, navigate to the &#8220;Backup Alerts&#8221; section of the &#8220;recovery Services vault&#8221; and click the &#8220;Configure notifications&#8221;</p>
<p id="qcIOlQN" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-2110 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/09/img_5b9913d609ea5.png" alt="backup alert notifications" width="971" height="290" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/09/img_5b9913d609ea5.png 971w, https://www.cloudcorner.gr/wp-content/uploads/2018/09/img_5b9913d609ea5-300x90.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2018/09/img_5b9913d609ea5-768x229.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2018/09/img_5b9913d609ea5-600x179.png 600w" sizes="auto, (max-width: 971px) 100vw, 971px" /></p>
<p style="text-align: justify;">There switch the Email notification to On to enable the alerts. Enter one or more recipients separated with semicolon (;). Choose Per Alert or Hourly Digest. Per Alert will fire an email for every alert instantly and the Hourly Digest means that the notification agent will check for alerts every hour and will fire an email with the active alerts.</p>
<p style="text-align: justify;">Finally choose the Severity of the alerts which you will be notified and press save.</p>
<p id="fWhfNCs" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-2111 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/09/img_5b9913e73fad0.png" alt="backup alert notifications" width="317" height="377" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/09/img_5b9913e73fad0.png 317w, https://www.cloudcorner.gr/wp-content/uploads/2018/09/img_5b9913e73fad0-252x300.png 252w" sizes="auto, (max-width: 317px) 100vw, 317px" /></p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author">
<div class="saboxplugin-tab">
<div class="saboxplugin-gravatar"><img loading="lazy" decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div>
<div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div>
<div class="saboxplugin-desc">
<div itemprop="description">
<p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div>
</div>
<div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div>
<div class="clearfix"></div>
<div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:&#112;ro&#120;im&#097;g&#114;&#064;h&#111;&#116;mail.c&#111;&#109;" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div>
</div>
</div>
<p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-backup-enable-backup-alert-notifications%2F&amp;linkname=Azure%20Backup%20%7C%20Enable%20backup%20alert%20notifications" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-backup-enable-backup-alert-notifications%2F&amp;linkname=Azure%20Backup%20%7C%20Enable%20backup%20alert%20notifications" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-backup-enable-backup-alert-notifications%2F&#038;title=Azure%20Backup%20%7C%20Enable%20backup%20alert%20notifications" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/azure-backup-enable-backup-alert-notifications/" data-a2a-title="Azure Backup | Enable backup alert notifications"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-backup-enable-backup-alert-notifications/">Azure Backup | Enable backup alert notifications</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/azure-backup-enable-backup-alert-notifications/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Azure Portal Tip &#124;  Virtual Machines bulk actions</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/azure-portal-tip-virtual-machines-bulk-actions/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/azure-portal-tip-virtual-machines-bulk-actions/#respond</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Mon, 10 Sep 2018 21:24:01 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[azurerm]]></category>
		<category><![CDATA[bulk]]></category>
		<category><![CDATA[virtual machine]]></category>
		<guid isPermaLink="false">https://www.e-apostolidis.gr/?p=2101</guid>

					<description><![CDATA[<p>Azure Portal &#124; Virtual Machines bulk actions Azure Portal is a great GUI tool to administer all your Azure Resources</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-portal-tip-virtual-machines-bulk-actions/">Azure Portal Tip |  Virtual Machines bulk actions</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1 style="text-align: justify;">Azure Portal | Virtual Machines bulk actions</h1>
<p style="text-align: justify;">Azure Portal is a great GUI tool to administer all your Azure Resources and it continues evolving. Here is a very useful Tip. Did you know that you can manage Virtual Machines in bulk using the Azure Portal VIrtual Machines section? We have virtual machines bulk actions!</p>
<p id="dLEQSwv" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-2106 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/09/img_5b96de2c9798f.png" alt="Virtual Machines bulk actions" width="831" height="283" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/09/img_5b96de2c9798f.png 831w, https://www.cloudcorner.gr/wp-content/uploads/2018/09/img_5b96de2c9798f-300x102.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2018/09/img_5b96de2c9798f-768x262.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2018/09/img_5b96de2c9798f-600x204.png 600w" sizes="auto, (max-width: 831px) 100vw, 831px" /></p>
<p style="text-align: justify;">Not only we can Assign Tags, Start, Restart, Stop and Delete Virtual Machines in bulk but also configure Change Tracking, Inventory and Update Management!!</p>
<p style="text-align: justify;">Filter out the Virtual Machines needed and just click the &#8220;Change Tracking&#8221; to have a report off all changes that happens inside the VM, like changes to services for Windows, daemons for Linux, applications and file changes.</p>
<p style="text-align: justify;">Use the &#8220;Inventory&#8221; to have a complete inventory of all the installed applications of the VM. Enable consistent control and compliance of these virtual machines.</p>
<p style="text-align: justify;">Enable the &#8220;Update Management&#8221; to manage the Updates of the selected Virtual Machines. Create update policies and control the installation of the updates.</p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author">
<div class="saboxplugin-tab">
<div class="saboxplugin-gravatar"><img loading="lazy" decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div>
<div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div>
<div class="saboxplugin-desc">
<div itemprop="description">
<p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div>
</div>
<div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div>
<div class="clearfix"></div>
<div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:proxi&#109;ag&#114;&#064;hot&#109;a&#105;&#108;&#046;com" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div>
</div>
</div>
<p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-portal-tip-virtual-machines-bulk-actions%2F&amp;linkname=Azure%20Portal%20Tip%20%7C%20%20Virtual%20Machines%20bulk%20actions" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-portal-tip-virtual-machines-bulk-actions%2F&amp;linkname=Azure%20Portal%20Tip%20%7C%20%20Virtual%20Machines%20bulk%20actions" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-portal-tip-virtual-machines-bulk-actions%2F&#038;title=Azure%20Portal%20Tip%20%7C%20%20Virtual%20Machines%20bulk%20actions" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/azure-portal-tip-virtual-machines-bulk-actions/" data-a2a-title="Azure Portal Tip |  Virtual Machines bulk actions"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-portal-tip-virtual-machines-bulk-actions/">Azure Portal Tip |  Virtual Machines bulk actions</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/azure-portal-tip-virtual-machines-bulk-actions/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Bulletproof manage your Azure VMs</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/bulletproof-manage-your-azure-vms/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/bulletproof-manage-your-azure-vms/#respond</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Sun, 03 Dec 2017 21:35:58 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[azure security center]]></category>
		<category><![CDATA[azure vm]]></category>
		<category><![CDATA[azurerm]]></category>
		<category><![CDATA[jit]]></category>
		<category><![CDATA[just in time vm access]]></category>
		<category><![CDATA[nsg]]></category>
		<category><![CDATA[security center]]></category>
		<category><![CDATA[virtual machine]]></category>
		<guid isPermaLink="false">https://www.e-apostolidis.gr/?p=1656</guid>

					<description><![CDATA[<p>Bulletproof manage your Azure VMs Continuing the Azure Security Center posts, today we will see a new feature of the</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/bulletproof-manage-your-azure-vms/">Bulletproof manage your Azure VMs</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1>Bulletproof manage your Azure VMs</h1>
<p style="text-align: justify;">Continuing the Azure Security Center posts, today we will see a new feature of the Security Center, called Just in Time VM Access.</p>
<p style="text-align: justify;">As best security practice, all the management ports of a Virtual Machine should be closed using Network Security Groups. Only the ports required for any published services should be opened, if any.</p>
<p style="text-align: justify;">However there are many occasions that we are requested to open a management port for administration or a service port for some tests for short time. This action has two major problems, first it requires a lot of administration time, because the administrator must go to the Azure Portal and add a rule at the VM&#8217;s NSG. The second problem is that many time the port is forgotten open and this is a major vulnerability since the majority of the Brute Force attacks are performed to the management ports, 22 and 3389.</p>
<p style="text-align: justify;">Here comes the Azure Security Center, with the Just in Time VM Access feature. With this feature we can use the RBAC of the azure Portal and allow specific users to Request a predefined port to be opened for a short time frame.</p>
<h2>JIT Configuration</h2>
<p style="text-align: justify;">Lets see how we configure the JIT.  First we need to go to the Azure Security Center. Scroll down to the ADVANCED CLOUD DEFENSE and click the &#8220;Just in time VM Access&#8221;. Since it is at a Preview you need to press the &#8220;Try Just in time VM access&#8221;</p>
<p id="mPZRuIk" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1660 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2017/12/img_5a22d02bf29ff.png" alt="just in time vm access" width="1242" height="978" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d02bf29ff.png 1242w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d02bf29ff-300x236.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d02bf29ff-768x605.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d02bf29ff-1024x806.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d02bf29ff-600x472.png 600w" sizes="auto, (max-width: 1242px) 100vw, 1242px" /></p>
<p style="text-align: justify;">After we enable JIT, the window displays tree tabs, the Configured, the Recommended and the No recommendation. The Configured tab displays the Virtual Machines that we have already enabled JIT. The recommended are VMs that have NSGs and are recommended to be enabled for JIT. The No recommendation are Classic VMs or VMs that don&#8217;t have attached NSG.</p>
<p id="wjPqmlR" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1661 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2017/12/img_5a22d13a89971.png" alt="configured" width="827" height="338" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d13a89971.png 827w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d13a89971-300x123.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d13a89971-768x314.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d13a89971-600x245.png 600w" sizes="auto, (max-width: 827px) 100vw, 827px" /></p>
<p style="text-align: justify;">To enable JIT for a VM, go to the Recommended tab, select one or more VMs and press &#8220;Enable JIT on x VMs&#8221;</p>
<p id="zPQVins" style="text-align: justify;"><img loading="lazy" decoding="async" width="825" height="358" class="alignnone size-full wp-image-1662" src="https://www.e-apostolidis.gr/wp-content/uploads/2017/12/img_5a22d32dbfeff.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d32dbfeff.png 825w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d32dbfeff-300x130.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d32dbfeff-768x333.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d32dbfeff-600x260.png 600w" sizes="auto, (max-width: 825px) 100vw, 825px" /></p>
<p style="text-align: justify;">At the &#8220;JIT VM access configuration&#8221; the Security Center proposes rule with the default management ports. We can add other ports that we need and also remove any of them that are unnecessary.</p>
<p style="text-align: justify;">At each rule we can configure the Port, the Protocol, the Source IP and the Maximum request time.</p>
<p style="text-align: justify;">If we leave the &#8220;Allowed source IPs&#8221; to &#8220;Per request&#8221; then we allow the requester to decide. One very interesting setting here is that when a user requests access it has the option to allow only the Public IP that he is using at that time automatically.</p>
<p style="text-align: justify;">With the last option, the &#8220;Max request time&#8221; we narrow down the maximum time that we will allow a port to be opened.</p>
<p id="CAPbvLV" style="text-align: justify;"><img loading="lazy" decoding="async" width="879" height="376" class="alignnone size-full wp-image-1664 " src="https://www.e-apostolidis.gr/wp-content/uploads/2017/12/img_5a22d3a9c3a99.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d3a9c3a99.png 879w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d3a9c3a99-300x128.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d3a9c3a99-768x329.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d3a9c3a99-600x257.png 600w" sizes="auto, (max-width: 879px) 100vw, 879px" /></p>
<p style="text-align: justify;">After we configure all the parameters we click Save and the VM moves to the Configured tab. At any time we can change the configuration by selecting the VM, press the three dots at the end of the line (&#8230;) and click Edit.</p>
<p id="VwWUWMS" style="text-align: justify;"><img loading="lazy" decoding="async" width="1004" height="361" class="alignnone size-full wp-image-1665 " src="https://www.e-apostolidis.gr/wp-content/uploads/2017/12/img_5a22d5d58dd41.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d5d58dd41.png 1004w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d5d58dd41-300x108.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d5d58dd41-768x276.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a22d5d58dd41-600x216.png 600w" sizes="auto, (max-width: 1004px) 100vw, 1004px" /></p>
<p style="text-align: justify;">The Propertied button opens the VM&#8217;s blade, the Activity log shows all the users that requested access and the Remove of course disabled the JIT.</p>
<h2>Behind the scene</h2>
<p style="text-align: justify;">What really happens to the VM? if you browse to the NSG that is attached to the VM you will see that all the port rules configured at the JIT are added as NSG Rules with lower priority than all the other rules. All other rules automatically changed priority to higher.</p>
<p id="JqqoaYn" style="text-align: justify;"><img loading="lazy" decoding="async" width="1094" height="407" class="alignnone size-full wp-image-1669 " src="https://www.e-apostolidis.gr/wp-content/uploads/2017/12/img_5a2468239428d.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a2468239428d.png 1094w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a2468239428d-300x112.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a2468239428d-768x286.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a2468239428d-1024x381.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a2468239428d-600x223.png 600w" sizes="auto, (max-width: 1094px) 100vw, 1094px" /></p>
<p style="text-align: justify;">Lets see how we request access and what happens in the background. To request access go to the Security Center / JIT , select the VM and press &#8220;Request Access&#8221;</p>
<p id="COIPxwC" style="text-align: justify;"><img loading="lazy" decoding="async" width="834" height="304" class="alignnone size-full wp-image-1670 " src="https://www.e-apostolidis.gr/wp-content/uploads/2017/12/img_5a2468e29150a.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a2468e29150a.png 834w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a2468e29150a-300x109.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a2468e29150a-768x280.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a2468e29150a-600x219.png 600w" sizes="auto, (max-width: 834px) 100vw, 834px" /></p>
<p style="text-align: justify;">At the &#8220;Request access&#8221; blade switch on the desired port, select &#8220;My IP&#8221; or &#8220;IP Range&#8221; and the Timerange, all according to the JIT configuration of the VM. Finally press &#8220;Open Ports&#8221;</p>
<p id="oqVupEo" style="text-align: justify;"><img loading="lazy" decoding="async" width="824" height="347" class="alignnone size-full wp-image-1671 " src="https://www.e-apostolidis.gr/wp-content/uploads/2017/12/img_5a24691bc03c0.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a24691bc03c0.png 824w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a24691bc03c0-300x126.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a24691bc03c0-768x323.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a24691bc03c0-600x253.png 600w" sizes="auto, (max-width: 824px) 100vw, 824px" /></p>
<p style="text-align: justify;">At the above example I select &#8220;My IP&#8221; so if you go to the VM&#8217;s NSG you will see that the 3389 port rule changed to &#8220;Allow&#8221; and for Source has my current Public IP. Also it moved at first priority.</p>
<p id="IrbhSBa" style="text-align: justify;"><img loading="lazy" decoding="async" width="1255" height="454" class="alignnone size-full wp-image-1672 " src="https://www.e-apostolidis.gr/wp-content/uploads/2017/12/img_5a2469d530f30.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a2469d530f30.png 1255w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a2469d530f30-300x109.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a2469d530f30-768x278.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a2469d530f30-1024x370.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2017/12/img_5a2469d530f30-600x217.png 600w" sizes="auto, (max-width: 1255px) 100vw, 1255px" /></p>
<p style="text-align: justify;">After the expiration of the time rage the port will change to &#8220;Deny&#8221; and move back to its prior priority.</p>
<p>&nbsp;</p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author">
<div class="saboxplugin-tab">
<div class="saboxplugin-gravatar"><img loading="lazy" decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div>
<div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div>
<div class="saboxplugin-desc">
<div itemprop="description">
<p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div>
</div>
<div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div>
<div class="clearfix"></div>
<div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:pro&#120;&#105;&#109;ag&#114;&#064;&#104;&#111;tm&#097;&#105;l&#046;&#099;o&#109;" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div>
</div>
</div>
<p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fbulletproof-manage-your-azure-vms%2F&amp;linkname=Bulletproof%20manage%20your%20Azure%20VMs" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fbulletproof-manage-your-azure-vms%2F&amp;linkname=Bulletproof%20manage%20your%20Azure%20VMs" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fbulletproof-manage-your-azure-vms%2F&#038;title=Bulletproof%20manage%20your%20Azure%20VMs" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/bulletproof-manage-your-azure-vms/" data-a2a-title="Bulletproof manage your Azure VMs"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/bulletproof-manage-your-azure-vms/">Bulletproof manage your Azure VMs</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/bulletproof-manage-your-azure-vms/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Use Azure Security Center to protect your workloads</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/use-azure-security-center-to-protect-your-workloads/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/use-azure-security-center-to-protect-your-workloads/#respond</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Mon, 20 Nov 2017 19:18:47 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[azure security center]]></category>
		<category><![CDATA[azurerm]]></category>
		<category><![CDATA[oms]]></category>
		<category><![CDATA[virtual machine]]></category>
		<guid isPermaLink="false">https://www.e-apostolidis.gr/?p=1640</guid>

					<description><![CDATA[<p>Use Azure Security Center to protect your workloads At this series of posts we will make a walk along the</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/use-azure-security-center-to-protect-your-workloads/">Use Azure Security Center to protect your workloads</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1>Use Azure Security Center to protect your workloads</h1>
<p style="text-align: justify;">At this series of posts we will make a walk along the Azure Security Center, to see some common usage scenarios. Like how we can use it to protect from a Virtual Machine to a whole Data Center.</p>
<p style="text-align: justify;">To make it easier to understand we will start with a typical Azure IaaS scenario. A Virtual Machine with IIS role to act as Web Server. The steps to create the VM is out this post&#8217;s scope. I will simply describe the process. First we create a Windows Server 2016 Virtual Machine. Second we log in and add the Web Server (IIS) role. Third we open the port 80 at the VM&#8217;s Network Security Group (NSG) and voila we can browse at the Azure DNS name of the VM and see the IIS default landing page.</p>
<p id="zIvOSzC" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1641 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2017/11/img_5a105bb4bf67f.png" alt="Azure Security Center" width="996" height="692" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a105bb4bf67f.png 996w, https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a105bb4bf67f-300x208.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a105bb4bf67f-768x534.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a105bb4bf67f-600x417.png 600w" sizes="auto, (max-width: 996px) 100vw, 996px" /></p>
<p style="text-align: justify;">At this point the security of the Web Server is relying on the Network Security Rule, a layer 3 firewall that allows access to the port 80 and of course the Windows Firewall that does exactly the same.</p>
<p style="text-align: justify;">Lets browse to the Azure Security Center from the Azure Portal. There we see an overview of security settings for the whole subscription.</p>
<p id="nqjjXEf" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1644 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2017/11/img_5a10612d19999.png" alt="Azure Security Center" width="725" height="334" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a10612d19999.png 725w, https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a10612d19999-300x138.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a10612d19999-600x276.png 600w" sizes="auto, (max-width: 725px) 100vw, 725px" /></p>
<p style="text-align: justify;">First, click the &#8220;Compute&#8221;. I will skip the overview and go directly to the &#8220;VMs and computers&#8221; tab. There we see the name of the VM and the five points of interest. Our VM is not monitored, it doesn&#8217;t have endpoint protection and it reports some vulnerabilities.</p>
<p id="XwvRyIe" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1645 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2017/11/img_5a1061fd5f2cd.png" alt="Azure Security Center" width="882" height="344" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a1061fd5f2cd.png 882w, https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a1061fd5f2cd-300x117.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a1061fd5f2cd-768x300.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a1061fd5f2cd-600x234.png 600w" sizes="auto, (max-width: 882px) 100vw, 882px" /></p>
<h2>Recommendation: Enable data collection for subscriptions</h2>
<p style="text-align: justify;">To start resolving the issues click the VM to go to the Recommendations blade. The first recommendation says to enable data collection for the subscription. Of course this is the Log Analytics, OMS (Operations Management Suite) integration. This will enable the subscription resources to report to log analytics.</p>
<p id="RWximvz" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1646 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2017/11/img_5a1062a09b82a.png" alt="Azure Security Center" width="505" height="194" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a1062a09b82a.png 505w, https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a1062a09b82a-300x115.png 300w" sizes="auto, (max-width: 505px) 100vw, 505px" /></p>
<p style="text-align: justify;">Press the &#8220;Enable data collection for subscription&#8221;. The Data Collection blade will open. There we can enable or disable the automatic provision of the monitoring agent. This is the Microsoft Monitoring Agent that connects a Virtual Machine to Log Analytics and also we can use it for connecting to SCOM.</p>
<p id="etqxNpD" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1648 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2017/11/img_5a1321575feb1.png" alt="Azure Security Center" width="592" height="567" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a1321575feb1.png 592w, https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a1321575feb1-300x287.png 300w" sizes="auto, (max-width: 592px) 100vw, 592px" /></p>
<p style="text-align: justify;">The second option is to chose a workspace. IF you have already created an OMS workspace you can choose it. If not let it create a new one automatically. Finally press save.</p>
<p style="text-align: justify;">Returning to the previous blade you will see that the &#8220;Turn on data collection&#8221; recommendation, is now in Resolved state.</p>
<p id="EKzpVwO" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1649 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2017/11/img_5a13220c53a03.png" alt="Azure Security Center" width="558" height="181" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a13220c53a03.png 558w, https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a13220c53a03-300x97.png 300w" sizes="auto, (max-width: 558px) 100vw, 558px" /></p>
<p>Although this recommendation is resolved instantly, the Microsoft Monitoring Agent is not yet installed. Go back to the Compute / Data collection installation status to see the agent installation status.</p>
<p id="OUEAlVQ"><img loading="lazy" decoding="async" class="alignnone wp-image-1650 size-full" src="https://www.e-apostolidis.gr/wp-content/uploads/2017/11/img_5a1326cf7d48d.png" alt="Azure Security Center" width="514" height="233" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a1326cf7d48d.png 514w, https://www.cloudcorner.gr/wp-content/uploads/2017/11/img_5a1326cf7d48d-300x136.png 300w" sizes="auto, (max-width: 514px) 100vw, 514px" /></p>
<p style="text-align: justify;">Stay tuned for the next Azure Security Center post to resolve more recommendations.</p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author">
<div class="saboxplugin-tab">
<div class="saboxplugin-gravatar"><img loading="lazy" decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div>
<div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div>
<div class="saboxplugin-desc">
<div itemprop="description">
<p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div>
</div>
<div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div>
<div class="clearfix"></div>
<div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:&#112;&#114;&#111;&#120;imag&#114;&#064;hotm&#097;il&#046;&#099;o&#109;" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div>
</div>
</div>
<p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fuse-azure-security-center-to-protect-your-workloads%2F&amp;linkname=Use%20Azure%20Security%20Center%20to%20protect%20your%20workloads" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fuse-azure-security-center-to-protect-your-workloads%2F&amp;linkname=Use%20Azure%20Security%20Center%20to%20protect%20your%20workloads" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fuse-azure-security-center-to-protect-your-workloads%2F&#038;title=Use%20Azure%20Security%20Center%20to%20protect%20your%20workloads" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/use-azure-security-center-to-protect-your-workloads/" data-a2a-title="Use Azure Security Center to protect your workloads"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/use-azure-security-center-to-protect-your-workloads/">Use Azure Security Center to protect your workloads</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/use-azure-security-center-to-protect-your-workloads/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Microsoft Azure Nested Virtualization &#124; Hyper-V Replica on Azure</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/azure-nested-virtualization-hyper-v-replica/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/azure-nested-virtualization-hyper-v-replica/#respond</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Mon, 21 Aug 2017 11:30:32 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[azure vm]]></category>
		<category><![CDATA[azurerm]]></category>
		<category><![CDATA[hyper-v]]></category>
		<category><![CDATA[hyper-v replica]]></category>
		<category><![CDATA[nested virtualization]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[windows server]]></category>
		<guid isPermaLink="false">http://www.e-apostolidis.gr/?p=1414</guid>

					<description><![CDATA[<p>Microsoft Azure Nested Virtualization &#124; Hyper-V Replica on Azure With the new Dv3 and Ev3 VM sizes Microsoft has released the</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-nested-virtualization-hyper-v-replica/">Microsoft Azure Nested Virtualization | Hyper-V Replica on Azure</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1>Microsoft Azure Nested Virtualization | Hyper-V Replica on Azure</h1>
<p>With the new Dv3 and Ev3 VM sizes Microsoft has released the Nested Virtualization, meaning you can simply have a Hyper-V VM inside an Azure VM. I have created a set of posts to explore the Nested Virtualization functionality. Of course nested virtualization is only supported in Windows Server 2016.</p>
<h2>Microsoft Azure Nested Virtualization</h2>
<ul>
<li><a href="http://www.e-apostolidis.gr/microsoft/nested-virtualization-vm-inside-azure-vm/">Hyper-V VM inside Azure VM</a></li>
<li><a href="http://www.e-apostolidis.gr/microsoft/azure-nested-virtualization-hyper-v-replica/">Hyper-V Replica on Azure</a></li>
<li><a href="http://www.e-apostolidis.gr/microsoft/azure-nested-virtualization-web-server/">Web Server</a></li>
<li><a href="http://www.e-apostolidis.gr/microsoft/microsoft-azure-nested-virtualization-vm-in-vm-in-azure-vm/">VM in Nested VM in Azure VM</a></li>
</ul>
<p style="text-align: justify;">After the <a href="http://www.e-apostolidis.gr/microsoft/nested-virtualization-vm-inside-azure-vm/">Microsoft Azure Nested Virtualization | Hyper-V VM inside Azure VM</a> post on how to create a Nested VM inside an Azure VM, I am following with how to have Hyper-V Replica on Azure.</p>
<p style="text-align: justify;">To accomplish this we will use the Azure VM and the Nested VM from the <a href="http://www.e-apostolidis.gr/microsoft/nested-virtualization-vm-inside-azure-vm/">Microsoft Azure Nested Virtualization | Hyper-V VM inside Azure VM</a> post. The first step is to create an identical pair of Azure VM and Nested VM to use for replica server. The only requirement is that the two Azure VMs must have network connectivity. As you understand we can have Hyper-V Replica between two Azure VMs at different Azure Regions using VPN.</p>
<p style="text-align: justify;">Next, at both Azure VMs open the 443 port at both the NSG and the Windows Firewall. For more security we can add the Public IPs of the VMs as Source.</p>
<p style="text-align: justify;">Since the VMs are not part of a domain we need to use Certificate based authentication for the Hyper-V Replica. We will use the New-SelfSignedCertificate command to create both certificates.</p>
<h2>The certificate process</h2>
<p>First we need to create a root CA certificate, so login at the first host and run:</p>
<pre class="lang:ps decode:true">New-SelfSignedCertificate -Type "Custom" -KeyExportPolicy "Exportable" -Subject "CN=myazurerootca" -CertStoreLocation "Cert:\LocalMachine\My" -KeySpec "Signature" -KeyUsage "CertSign"</pre>
<p id="uCsbVGw"><img loading="lazy" decoding="async" class="alignnone wp-image-1417 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/08/img_5996ea352a401.png" alt="Hyper-V Replica on Azure" width="850" height="182" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ea352a401.png 850w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ea352a401-300x64.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ea352a401-768x164.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ea352a401-600x128.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ea352a401-660x141.png 660w" sizes="auto, (max-width: 850px) 100vw, 850px" /></p>
<p>Next, using the certificate Thumbprint of the root CA certificate, create two server certificates, one for each Azure VM. To accomplish this run:</p>
<pre class="lang:ps decode:true ">New-SelfSignedCertificate -type "Custom" -KeyExportPolicy "Exportable" -Subject "CN=anothertestvm" -CertStoreLocation "Cert:\LocalMachine\My" -KeySpec "KeyExchange" -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.1,1.3.6.1.5.5.7.3.2") -Signer "Cert:LocalMachine\My\6A7196D9759FC2F7C49D62E08FA7195310DE5EB7" -Provider "Microsoft Enhanced RSA and AES Cryptographic Provider"

New-SelfSignedCertificate -type "Custom" -KeyExportPolicy "Exportable" -Subject "CN=anothertestvm2" -CertStoreLocation "Cert:\LocalMachine\My" -KeySpec "KeyExchange" -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.1,1.3.6.1.5.5.7.3.2") -Signer "Cert:LocalMachine\My\6A7196D9759FC2F7C49D62E08FA7195310DE5EB7" -Provider "Microsoft Enhanced RSA and AES Cryptographic Provider"</pre>
<p id="PzXlvag"><img loading="lazy" decoding="async" class="alignnone wp-image-1418 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/08/img_5996ead3c7ec4.png" alt="Hyper-V Replica on Azure" width="843" height="292" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ead3c7ec4.png 843w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ead3c7ec4-300x104.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ead3c7ec4-768x266.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ead3c7ec4-600x208.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ead3c7ec4-660x229.png 660w" sizes="auto, (max-width: 843px) 100vw, 843px" /></p>
<p>The next step is to open the Certificates mmc (Local Computer) and at the Personal container you will find the three certificates created above.</p>
<p id="ZPeBlIG"><img loading="lazy" decoding="async" class="alignnone wp-image-1419 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/08/img_5996eb2b2a0b2.png" alt="Hyper-V Replica on Azure" width="691" height="216" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996eb2b2a0b2.png 691w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996eb2b2a0b2-300x94.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996eb2b2a0b2-600x188.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996eb2b2a0b2-660x206.png 660w" sizes="auto, (max-width: 691px) 100vw, 691px" /></p>
<p>Right click each certificate and Export it, including the Private key, to a folder</p>
<p id="kADOZiQ"><img loading="lazy" decoding="async" class="alignnone wp-image-1420 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/08/img_5996ebf4ccc4b.png" alt="Hyper-V Replica on Azure" width="293" height="175" /></p>
<p>Copy the certificates to the second Azure VM and import them. The root CA certificate needs to be imported to he Trust Root Certification Authorities and the other two to the Personal (or just use automatic placement).</p>
<p id="OCIexVj"><img loading="lazy" decoding="async" class="alignnone wp-image-1421 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/08/img_5996ec3a9adee.png" alt="Hyper-V Replica on Azure" width="772" height="362" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ec3a9adee.png 772w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ec3a9adee-300x141.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ec3a9adee-768x360.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ec3a9adee-600x281.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ec3a9adee-660x309.png 660w" sizes="auto, (max-width: 772px) 100vw, 772px" /></p>
<p>Finally we need to disable the Certificate revocation check for Replication on both Azure VMs. To do this run the following command on both Azure VMs:</p>
<pre class="lang:ps decode:true ">REG ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Virtualization\Replication" /v DisableCertRevocationCheck /d 1 /t REG_DWORD /f</pre>
<p id="kuKRHFI"><img loading="lazy" decoding="async" class="alignnone wp-image-1422 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/08/img_5996ecfa48bea.png" alt="Hyper-V Replica on Azure" width="975" height="198" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ecfa48bea.png 975w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ecfa48bea-300x61.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ecfa48bea-768x156.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ecfa48bea-600x122.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ecfa48bea-660x134.png 660w" sizes="auto, (max-width: 975px) 100vw, 975px" /></p>
<h2>The Hyper-V Replica process</h2>
<p>Lets start creating the Hyper-V Replica. Since Hyper-V Replica uses computer names, we need to use the host file to bind the Public IPs with the computer names. So, at the first Azure VM, open an elevated Notepad, browse to the path &#8220;C:\Windows\System32\drivers\etc&#8221;, and open the &#8220;hosts&#8221; file. Enter the Public IP of the second Azure VM following by the computer name. Do the same at the second Azure VM.</p>
<p id="dSeHPRE"><img loading="lazy" decoding="async" class="alignnone wp-image-1423 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/08/img_5996edba4533f.png" alt="Hyper-V Replica on Azure" width="309" height="114" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996edba4533f.png 309w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996edba4533f-300x111.png 300w" sizes="auto, (max-width: 309px) 100vw, 309px" /></p>
<p>After saving the host file, go to the Hyper-V Settings, go to the &#8220;Replication Configuration&#8221; and check the &#8220;Enable this computer as a Replica Server&#8221;. Then check the &#8220;Use certificate-based Authentication (HTTPS)&#8221; and select the certificate created before. Finally check the &#8220;Allow replication from any authenticated servers&#8221; and press OK. Do this at both Azure VM Hyper-V Servers.</p>
<p id="BIHCxhd"><img loading="lazy" decoding="async" class="alignnone wp-image-1426 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/08/img_5996ef35ed917.png" alt="Hyper-V Replica on Azure" width="707" height="672" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ef35ed917.png 707w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ef35ed917-300x285.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ef35ed917-600x570.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ef35ed917-660x627.png 660w" sizes="auto, (max-width: 707px) 100vw, 707px" /></p>
<p>&nbsp;</p>
<p>Next go to the Hyper-V manager, right click the Nested VM and choose &#8220;Enable Replica&#8221;. Enter the name of the second Azure VM and select the certificate.</p>
<p>&nbsp;</p>
<p id="jitWgce"><img loading="lazy" decoding="async" class="alignnone wp-image-1424 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/08/img_5996ee2c4b97f.png" alt="Hyper-V Replica on Azure" width="702" height="523" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ee2c4b97f.png 702w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ee2c4b97f-300x224.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ee2c4b97f-600x447.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996ee2c4b97f-660x492.png 660w" sizes="auto, (max-width: 702px) 100vw, 702px" /></p>
<p>&nbsp;</p>
<p>I just used the defaults at all the next screens and finally press finish to enable the replication.</p>
<p id="TMtfvqr"><img loading="lazy" decoding="async" class="alignnone wp-image-1425 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/08/img_5996eeab97785.png" alt="Hyper-V Replica on Azure" width="698" height="526" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996eeab97785.png 698w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996eeab97785-300x226.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996eeab97785-600x452.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996eeab97785-660x497.png 660w" sizes="auto, (max-width: 698px) 100vw, 698px" /></p>
<p>&nbsp;</p>
<p>Once the replication is enabled you will see the &#8220;Replication enabled successfully&#8221; message and the Status will change to &#8220;Sending Initial Replica&#8221;.</p>
<p id="VRLMySf"><img loading="lazy" decoding="async" class="alignnone wp-image-1427 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/08/img_5996efc5a3068.png" alt="Hyper-V Replica on Azure" width="1073" height="463" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996efc5a3068.png 1073w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996efc5a3068-300x129.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996efc5a3068-768x331.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996efc5a3068-1024x442.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996efc5a3068-600x259.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996efc5a3068-660x285.png 660w" sizes="auto, (max-width: 1073px) 100vw, 1073px" /></p>
<p>&nbsp;</p>
<p>After a very short period of time, the VM will complete the initial sync.</p>
<p id="PDIfrQo"><img loading="lazy" decoding="async" class="alignnone wp-image-1431 " src="http://www.e-apostolidis.gr/wp-content/uploads/2017/08/img_5996f307b0c5f.png" alt="" width="1043" height="659" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996f307b0c5f.png 1243w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996f307b0c5f-300x190.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996f307b0c5f-768x486.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996f307b0c5f-1024x648.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996f307b0c5f-600x379.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/08/img_5996f307b0c5f-660x417.png 660w" sizes="auto, (max-width: 1043px) 100vw, 1043px" /></p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author">
<div class="saboxplugin-tab">
<div class="saboxplugin-gravatar"><img loading="lazy" decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div>
<div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div>
<div class="saboxplugin-desc">
<div itemprop="description">
<p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div>
</div>
<div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div>
<div class="clearfix"></div>
<div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:p&#114;ox&#105;ma&#103;r&#064;&#104;o&#116;&#109;&#097;&#105;&#108;&#046;com" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div>
</div>
</div>
<p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-nested-virtualization-hyper-v-replica%2F&amp;linkname=Microsoft%20Azure%20Nested%20Virtualization%20%7C%20Hyper-V%20Replica%20on%20Azure" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-nested-virtualization-hyper-v-replica%2F&amp;linkname=Microsoft%20Azure%20Nested%20Virtualization%20%7C%20Hyper-V%20Replica%20on%20Azure" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-nested-virtualization-hyper-v-replica%2F&#038;title=Microsoft%20Azure%20Nested%20Virtualization%20%7C%20Hyper-V%20Replica%20on%20Azure" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/azure-nested-virtualization-hyper-v-replica/" data-a2a-title="Microsoft Azure Nested Virtualization | Hyper-V Replica on Azure"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-nested-virtualization-hyper-v-replica/">Microsoft Azure Nested Virtualization | Hyper-V Replica on Azure</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/azure-nested-virtualization-hyper-v-replica/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
