SlideShare a Scribd company logo
1 of 27
Download to read offline
Hyper-V Replication on Windows Server 2016
Step by Step (V1.1)
Ahmed Abdelwahed
Microsoft Certified Trainer
Ahmed_abdulwahed@outlook.com
Hyper-V Replication on Windows Server 2016
2 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Contents
Lab Scenario ..............................................................................................................................................................................3
Existing Environment.................................................................................................................................................................3
Working with Hyper-V...............................................................................................................................................................4
add Hyper-V role through PowerShell ..................................................................................................................................4
add Virtual Switch to Hyper-V...............................................................................................................................................4
Install Server Core 2016 on Hyper-V.........................................................................................................................................5
Manage server 2016 Core locally............................................................................................................................................14
Windows Server 2016 Initial Configuration ........................................................................................................................14
add IIS Role..........................................................................................................................................................................15
Configure Hyper-V Replica Server...........................................................................................................................................16
add Hyper-V role through PowerShell ................................................................................................................................16
add Virtual Switch to Hyper-V.............................................................................................................................................16
Hyper-V Replication Process ...................................................................................................................................................17
Enable Hyper-V Replication settings...................................................................................................................................17
Replication Process .............................................................................................................................................................19
Replication Status................................................................................................................................................................23
Test replicated VM ..............................................................................................................................................................25
Hyper-V Replication on Windows Server 2016
3 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Lab Scenario
This lab provides basic information about:
1- Install and configure Hyper-V 2016 Server role.
2- Install Windows Server 2016 Core VM on Hyper-V.
3- Enable and configure Hyper-V 2016 Replica Server.
4- Replicate Server Core 2016 VM from Hyper-V server to another through Hyper-V.
Existing Environment
we have Active Directory and DNS in Windows Server 2016 named ITPROLABS.XYZ, for this lab
we join another 2 Windows Server 2016 machine named Hyper-V01 & Hyper-V02 to our domain,
one of these servers will play Hyper-V server Role which host Windows Server core 2016, while
second one will act as Hyper-V replica server to receive replicated VM from first Hyper-V server.
Domain: ITPROLABS.XYZ
DC IP: 192.168.153.10
DNS: 192.168.153.10
Hyper-V01: 192.168.153.50
Hyper-V02 replica server: 192.168.153.51
Server Core VM: 192.168.153.52
For full Windows Server 2016 active directory lab check the following link:
https://gallery.technet.microsoft.com/Install-Windows-Server-f37e3c6d?redir=0
For full Hyper-V and Windows Server 2016 Core lab check the following link:
https://gallery.technet.microsoft.com/Install-and-Configure-b70f4cc2?redir=0
Hyper-V Replication on Windows Server 2016
4 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Working with Hyper-V
Login to server that will play Hyper-V role.
Server name: Hyper-V01
IP address: 192.168.153.50
Domain: ITProLab.xyz
add Hyper-V role through PowerShell
Install-WindowsFeature -Name Hyper-V -IncludeManagementTools -Restart
add Virtual Switch to Hyper-V
Add external virtual switch so we can connect VMs that hosted in Hyper-V with other VMs
Hyper-V Replication on Windows Server 2016
5 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Install Server Core 2016 on Hyper-V
from Hyper-V01 server manager access Hyper-V management console and follow the below figures to install
Server Core 2016 VM.
Hyper-V Replication on Windows Server 2016
6 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Hyper-V Replication on Windows Server 2016
7 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Browse and select Windows Server 2016 ISO image to use it as installation source
Hyper-V Replication on Windows Server 2016
8 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Connect to Server Core VM and start installation process
Hyper-V Replication on Windows Server 2016
9 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Hyper-V Replication on Windows Server 2016
10 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Hyper-V Replication on Windows Server 2016
11 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Select Windows Server 2016 Standard Core
Hyper-V Replication on Windows Server 2016
12 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Hyper-V Replication on Windows Server 2016
13 | P a g e
http://www.mycertprofile.com/Profile/3992184764
After installation is done, change local administrator password (we need it to access our server for first time)
Hyper-V Replication on Windows Server 2016
14 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Manage server 2016 Core locally
Windows Server 2016 Initial Configuration
Login to server core using local administrator account, then use Sconfig to change server Initial Configuration like Server
name and network configuration, so we can join our server to ITPROLABS.XYZ domain.
Server Name: WebServer
IP address: 192.168.153.52
SM:255.255.255.0
DNS: 192.168.153.10
DG: 192.168.153.2
Hyper-V Replication on Windows Server 2016
15 | P a g e
http://www.mycertprofile.com/Profile/3992184764
add IIS Role
Type 15 to exit sconfig to command line mode then type PowerShell to access PowerShell mode. Through
PowerShell use the following command to install IIS server role
Install-WindowsFeature -name Web-Server -IncludeManagementTools -verbose
After IIS installation is done, you can access WebServer through web as shown down
Hyper-V Replication on Windows Server 2016
16 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Configure Hyper-V Replica Server
add Hyper-V role through PowerShell
add Virtual Switch to Hyper-V
Hyper-V Replication on Windows Server 2016
17 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Hyper-V Replication Process
Enable Hyper-V Replication settings
To allow WebServer VM to replicate from Hyper-V01 server to another Hyper-V server (Hyper-V02),
enable Hyper-V replication settings on both Hyper-V servers
Hyper-V Replication on Windows Server 2016
18 | P a g e
http://www.mycertprofile.com/Profile/3992184764
also, enable same settings on Hyper-V02 server
Hyper-V Replication on Windows Server 2016
19 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Replication Process
From Hyper-V01 server enable WebServer VM replication to Hyper-V02 server
Hyper-V Replication on Windows Server 2016
20 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Browse and select Hyper-V server which will host the replicated VM, in our scenario replica server will be Hyper-
V02 server.
Hyper-V Replication on Windows Server 2016
21 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Hyper-V Replication on Windows Server 2016
22 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Hyper-V Replication on Windows Server 2016
23 | P a g e
http://www.mycertprofile.com/Profile/3992184764
From task manager check network traffic, you will notice that there is no traffic before replication
Replication Status
When replication start, notice send traffic increase because the replication go through network as we
configured.
Hyper-V Replication on Windows Server 2016
24 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Go to another Hyper-V server which receive replicated VM, will notice increment in receive traffic
Hyper-V Replication on Windows Server 2016
25 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Test replicated VM
- Shutdown the main webserver VM then try to access IIS which hosted on this server
Hyper-V Replication on Windows Server 2016
26 | P a g e
http://www.mycertprofile.com/Profile/3992184764
Now, IIS services is down.
- Go to replicated VM and follow the figures below to operate the replicated VM
Hyper-V Replication on Windows Server 2016
27 | P a g e
http://www.mycertprofile.com/Profile/3992184764
try again to access IIS on WebServer VM, Now is working through replicated VM.

More Related Content

What's hot

File server resource manager (fsrm) in windows server 2016
File server resource manager (fsrm) in windows server 2016File server resource manager (fsrm) in windows server 2016
File server resource manager (fsrm) in windows server 2016Ahmed Abdelwahed
 
Installing windows server 2016 TP 4
Installing windows server 2016 TP 4Installing windows server 2016 TP 4
Installing windows server 2016 TP 4Ayman Sheta
 
Inmagic Content Server Enterprise/Standard v1.3 Install Notes
Inmagic Content Server Enterprise/Standard v1.3 Install NotesInmagic Content Server Enterprise/Standard v1.3 Install Notes
Inmagic Content Server Enterprise/Standard v1.3 Install Noteswebhostingguy
 
Pandora FMS: Cisco Remote inventory modules
Pandora FMS: Cisco Remote inventory modulesPandora FMS: Cisco Remote inventory modules
Pandora FMS: Cisco Remote inventory modulesPandora FMS
 
Pandora FMS: Raven DB Plugin
Pandora FMS: Raven DB PluginPandora FMS: Raven DB Plugin
Pandora FMS: Raven DB PluginPandora FMS
 
Weblogic installation in linux
Weblogic installation in linuxWeblogic installation in linux
Weblogic installation in linuxRavi Kumar Lanke
 
harjotverma_assign3
harjotverma_assign3harjotverma_assign3
harjotverma_assign3Harjot Verma
 
O C S Inventory N G Installation And Administration Guide 1
O C S  Inventory  N G  Installation And  Administration  Guide 1O C S  Inventory  N G  Installation And  Administration  Guide 1
O C S Inventory N G Installation And Administration Guide 1rossodavide
 
System Engineer: OpenLDAP and Samba Server
System Engineer: OpenLDAP and Samba ServerSystem Engineer: OpenLDAP and Samba Server
System Engineer: OpenLDAP and Samba ServerTola LENG
 
Free ERP 2BizBox Quick Start Tutorial
Free ERP 2BizBox Quick Start TutorialFree ERP 2BizBox Quick Start Tutorial
Free ERP 2BizBox Quick Start Tutorial253725291
 
WebLogic, 12C SOA Standalone installation
WebLogic, 12C SOA Standalone installation WebLogic, 12C SOA Standalone installation
WebLogic, 12C SOA Standalone installation K Kumar Guduru
 
Oracle virtual server-2-t0-3-upgrade
Oracle virtual server-2-t0-3-upgradeOracle virtual server-2-t0-3-upgrade
Oracle virtual server-2-t0-3-upgradeRavi Kumar Lanke
 
Microsoft Certifications 70-410 dumps
Microsoft Certifications 70-410 dumps Microsoft Certifications 70-410 dumps
Microsoft Certifications 70-410 dumps lilylucy
 
Microsoft exchange-server-2013-installation
Microsoft exchange-server-2013-installationMicrosoft exchange-server-2013-installation
Microsoft exchange-server-2013-installationtakdirlovely09
 

What's hot (20)

File server resource manager (fsrm) in windows server 2016
File server resource manager (fsrm) in windows server 2016File server resource manager (fsrm) in windows server 2016
File server resource manager (fsrm) in windows server 2016
 
Installing windows server 2016 TP 4
Installing windows server 2016 TP 4Installing windows server 2016 TP 4
Installing windows server 2016 TP 4
 
How to publish your NAS on the Internet?
How to publish your NAS on the Internet?How to publish your NAS on the Internet?
How to publish your NAS on the Internet?
 
Inmagic Content Server Enterprise/Standard v1.3 Install Notes
Inmagic Content Server Enterprise/Standard v1.3 Install NotesInmagic Content Server Enterprise/Standard v1.3 Install Notes
Inmagic Content Server Enterprise/Standard v1.3 Install Notes
 
Installing and Setup Web Server
Installing and Setup Web ServerInstalling and Setup Web Server
Installing and Setup Web Server
 
Pandora FMS: Cisco Remote inventory modules
Pandora FMS: Cisco Remote inventory modulesPandora FMS: Cisco Remote inventory modules
Pandora FMS: Cisco Remote inventory modules
 
Pandora FMS: Raven DB Plugin
Pandora FMS: Raven DB PluginPandora FMS: Raven DB Plugin
Pandora FMS: Raven DB Plugin
 
Oracle vm
Oracle vmOracle vm
Oracle vm
 
Weblogic installation in linux
Weblogic installation in linuxWeblogic installation in linux
Weblogic installation in linux
 
harjotverma_assign3
harjotverma_assign3harjotverma_assign3
harjotverma_assign3
 
O C S Inventory N G Installation And Administration Guide 1
O C S  Inventory  N G  Installation And  Administration  Guide 1O C S  Inventory  N G  Installation And  Administration  Guide 1
O C S Inventory N G Installation And Administration Guide 1
 
Team lab install_en
Team lab install_enTeam lab install_en
Team lab install_en
 
System Engineer: OpenLDAP and Samba Server
System Engineer: OpenLDAP and Samba ServerSystem Engineer: OpenLDAP and Samba Server
System Engineer: OpenLDAP and Samba Server
 
Changes
ChangesChanges
Changes
 
Free ERP 2BizBox Quick Start Tutorial
Free ERP 2BizBox Quick Start TutorialFree ERP 2BizBox Quick Start Tutorial
Free ERP 2BizBox Quick Start Tutorial
 
KB Article 1-FINAL
KB Article 1-FINALKB Article 1-FINAL
KB Article 1-FINAL
 
WebLogic, 12C SOA Standalone installation
WebLogic, 12C SOA Standalone installation WebLogic, 12C SOA Standalone installation
WebLogic, 12C SOA Standalone installation
 
Oracle virtual server-2-t0-3-upgrade
Oracle virtual server-2-t0-3-upgradeOracle virtual server-2-t0-3-upgrade
Oracle virtual server-2-t0-3-upgrade
 
Microsoft Certifications 70-410 dumps
Microsoft Certifications 70-410 dumps Microsoft Certifications 70-410 dumps
Microsoft Certifications 70-410 dumps
 
Microsoft exchange-server-2013-installation
Microsoft exchange-server-2013-installationMicrosoft exchange-server-2013-installation
Microsoft exchange-server-2013-installation
 

Similar to Hyper v replication on windows server 2016 step by step

How to upgrade to MongoDB 4.0 - Percona Europe 2018
How to upgrade to MongoDB 4.0 - Percona Europe 2018How to upgrade to MongoDB 4.0 - Percona Europe 2018
How to upgrade to MongoDB 4.0 - Percona Europe 2018Antonios Giannopoulos
 
WP-CLI - Super Admin Tips and Tricks
WP-CLI - Super Admin Tips and TricksWP-CLI - Super Admin Tips and Tricks
WP-CLI - Super Admin Tips and TricksJonathan Perlman
 
Ws08 R2 Itpro Session 3 New Server Deployment And Migration
Ws08 R2 Itpro Session 3 New Server Deployment And MigrationWs08 R2 Itpro Session 3 New Server Deployment And Migration
Ws08 R2 Itpro Session 3 New Server Deployment And Migrationchenley
 
SAP SQL Anywhere High Availability Tutorial for Business Objects
SAP SQL Anywhere High Availability Tutorial for Business ObjectsSAP SQL Anywhere High Availability Tutorial for Business Objects
SAP SQL Anywhere High Availability Tutorial for Business ObjectsSitesh Patel
 
Chef compliance - Intermediate Training
Chef compliance - Intermediate TrainingChef compliance - Intermediate Training
Chef compliance - Intermediate TrainingSarah Hynes Cheney
 
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the ProxyCloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the ProxyMaki Toshio
 
CloudStack - Top 5 Technical Issues and Troubleshooting
CloudStack - Top 5 Technical Issues and TroubleshootingCloudStack - Top 5 Technical Issues and Troubleshooting
CloudStack - Top 5 Technical Issues and TroubleshootingShapeBlue
 
Workstation pro-12 guía
Workstation pro-12 guíaWorkstation pro-12 guía
Workstation pro-12 guíafhsjyjtyjit
 
Windows Server 2016 First Look (Part 1)
Windows Server 2016 First Look (Part 1)Windows Server 2016 First Look (Part 1)
Windows Server 2016 First Look (Part 1)Tuan Yang
 
Swift configurator installation-manual
Swift configurator installation-manualSwift configurator installation-manual
Swift configurator installation-manualPramod Sharma
 
Performance testing using hp load runner
Performance testing using hp load runnerPerformance testing using hp load runner
Performance testing using hp load runnerReturn on Intelligence
 
Share point 2010 enterprise single server farm installation
Share point 2010 enterprise single server farm installationShare point 2010 enterprise single server farm installation
Share point 2010 enterprise single server farm installationparallelminder
 
Share point 2010 enterprise single server farm installation
Share point 2010 enterprise single server farm installationShare point 2010 enterprise single server farm installation
Share point 2010 enterprise single server farm installationparallelminder
 
oVirt UI Plugin Infrastructure and the oVirt-Foreman plugin
oVirt UI Plugin Infrastructure and the oVirt-Foreman pluginoVirt UI Plugin Infrastructure and the oVirt-Foreman plugin
oVirt UI Plugin Infrastructure and the oVirt-Foreman pluginOved Ourfali
 
Amazon AWS Workspace Howto
Amazon AWS Workspace HowtoAmazon AWS Workspace Howto
Amazon AWS Workspace Howtomailbhargav
 
Setting up the hyperledger composer in ubuntu
Setting up the hyperledger composer in ubuntuSetting up the hyperledger composer in ubuntu
Setting up the hyperledger composer in ubuntukesavan N B
 
Nike popup compliance workshop
Nike popup compliance workshopNike popup compliance workshop
Nike popup compliance workshopChef
 

Similar to Hyper v replication on windows server 2016 step by step (20)

How to upgrade to MongoDB 4.0 - Percona Europe 2018
How to upgrade to MongoDB 4.0 - Percona Europe 2018How to upgrade to MongoDB 4.0 - Percona Europe 2018
How to upgrade to MongoDB 4.0 - Percona Europe 2018
 
WP-CLI - Super Admin Tips and Tricks
WP-CLI - Super Admin Tips and TricksWP-CLI - Super Admin Tips and Tricks
WP-CLI - Super Admin Tips and Tricks
 
CodeShip
CodeShipCodeShip
CodeShip
 
Exchange 2016v1.3.pdf
Exchange 2016v1.3.pdfExchange 2016v1.3.pdf
Exchange 2016v1.3.pdf
 
Ws08 R2 Itpro Session 3 New Server Deployment And Migration
Ws08 R2 Itpro Session 3 New Server Deployment And MigrationWs08 R2 Itpro Session 3 New Server Deployment And Migration
Ws08 R2 Itpro Session 3 New Server Deployment And Migration
 
SAP SQL Anywhere High Availability Tutorial for Business Objects
SAP SQL Anywhere High Availability Tutorial for Business ObjectsSAP SQL Anywhere High Availability Tutorial for Business Objects
SAP SQL Anywhere High Availability Tutorial for Business Objects
 
Chef compliance - Intermediate Training
Chef compliance - Intermediate TrainingChef compliance - Intermediate Training
Chef compliance - Intermediate Training
 
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the ProxyCloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
 
CloudStack - Top 5 Technical Issues and Troubleshooting
CloudStack - Top 5 Technical Issues and TroubleshootingCloudStack - Top 5 Technical Issues and Troubleshooting
CloudStack - Top 5 Technical Issues and Troubleshooting
 
Hyper-v Replica
Hyper-v ReplicaHyper-v Replica
Hyper-v Replica
 
Workstation pro-12 guía
Workstation pro-12 guíaWorkstation pro-12 guía
Workstation pro-12 guía
 
Windows Server 2016 First Look (Part 1)
Windows Server 2016 First Look (Part 1)Windows Server 2016 First Look (Part 1)
Windows Server 2016 First Look (Part 1)
 
Swift configurator installation-manual
Swift configurator installation-manualSwift configurator installation-manual
Swift configurator installation-manual
 
Performance testing using hp load runner
Performance testing using hp load runnerPerformance testing using hp load runner
Performance testing using hp load runner
 
Share point 2010 enterprise single server farm installation
Share point 2010 enterprise single server farm installationShare point 2010 enterprise single server farm installation
Share point 2010 enterprise single server farm installation
 
Share point 2010 enterprise single server farm installation
Share point 2010 enterprise single server farm installationShare point 2010 enterprise single server farm installation
Share point 2010 enterprise single server farm installation
 
oVirt UI Plugin Infrastructure and the oVirt-Foreman plugin
oVirt UI Plugin Infrastructure and the oVirt-Foreman pluginoVirt UI Plugin Infrastructure and the oVirt-Foreman plugin
oVirt UI Plugin Infrastructure and the oVirt-Foreman plugin
 
Amazon AWS Workspace Howto
Amazon AWS Workspace HowtoAmazon AWS Workspace Howto
Amazon AWS Workspace Howto
 
Setting up the hyperledger composer in ubuntu
Setting up the hyperledger composer in ubuntuSetting up the hyperledger composer in ubuntu
Setting up the hyperledger composer in ubuntu
 
Nike popup compliance workshop
Nike popup compliance workshopNike popup compliance workshop
Nike popup compliance workshop
 

Recently uploaded

My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 

Recently uploaded (20)

My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 

Hyper v replication on windows server 2016 step by step

  • 1. Hyper-V Replication on Windows Server 2016 Step by Step (V1.1) Ahmed Abdelwahed Microsoft Certified Trainer Ahmed_abdulwahed@outlook.com
  • 2. Hyper-V Replication on Windows Server 2016 2 | P a g e http://www.mycertprofile.com/Profile/3992184764 Contents Lab Scenario ..............................................................................................................................................................................3 Existing Environment.................................................................................................................................................................3 Working with Hyper-V...............................................................................................................................................................4 add Hyper-V role through PowerShell ..................................................................................................................................4 add Virtual Switch to Hyper-V...............................................................................................................................................4 Install Server Core 2016 on Hyper-V.........................................................................................................................................5 Manage server 2016 Core locally............................................................................................................................................14 Windows Server 2016 Initial Configuration ........................................................................................................................14 add IIS Role..........................................................................................................................................................................15 Configure Hyper-V Replica Server...........................................................................................................................................16 add Hyper-V role through PowerShell ................................................................................................................................16 add Virtual Switch to Hyper-V.............................................................................................................................................16 Hyper-V Replication Process ...................................................................................................................................................17 Enable Hyper-V Replication settings...................................................................................................................................17 Replication Process .............................................................................................................................................................19 Replication Status................................................................................................................................................................23 Test replicated VM ..............................................................................................................................................................25
  • 3. Hyper-V Replication on Windows Server 2016 3 | P a g e http://www.mycertprofile.com/Profile/3992184764 Lab Scenario This lab provides basic information about: 1- Install and configure Hyper-V 2016 Server role. 2- Install Windows Server 2016 Core VM on Hyper-V. 3- Enable and configure Hyper-V 2016 Replica Server. 4- Replicate Server Core 2016 VM from Hyper-V server to another through Hyper-V. Existing Environment we have Active Directory and DNS in Windows Server 2016 named ITPROLABS.XYZ, for this lab we join another 2 Windows Server 2016 machine named Hyper-V01 & Hyper-V02 to our domain, one of these servers will play Hyper-V server Role which host Windows Server core 2016, while second one will act as Hyper-V replica server to receive replicated VM from first Hyper-V server. Domain: ITPROLABS.XYZ DC IP: 192.168.153.10 DNS: 192.168.153.10 Hyper-V01: 192.168.153.50 Hyper-V02 replica server: 192.168.153.51 Server Core VM: 192.168.153.52 For full Windows Server 2016 active directory lab check the following link: https://gallery.technet.microsoft.com/Install-Windows-Server-f37e3c6d?redir=0 For full Hyper-V and Windows Server 2016 Core lab check the following link: https://gallery.technet.microsoft.com/Install-and-Configure-b70f4cc2?redir=0
  • 4. Hyper-V Replication on Windows Server 2016 4 | P a g e http://www.mycertprofile.com/Profile/3992184764 Working with Hyper-V Login to server that will play Hyper-V role. Server name: Hyper-V01 IP address: 192.168.153.50 Domain: ITProLab.xyz add Hyper-V role through PowerShell Install-WindowsFeature -Name Hyper-V -IncludeManagementTools -Restart add Virtual Switch to Hyper-V Add external virtual switch so we can connect VMs that hosted in Hyper-V with other VMs
  • 5. Hyper-V Replication on Windows Server 2016 5 | P a g e http://www.mycertprofile.com/Profile/3992184764 Install Server Core 2016 on Hyper-V from Hyper-V01 server manager access Hyper-V management console and follow the below figures to install Server Core 2016 VM.
  • 6. Hyper-V Replication on Windows Server 2016 6 | P a g e http://www.mycertprofile.com/Profile/3992184764
  • 7. Hyper-V Replication on Windows Server 2016 7 | P a g e http://www.mycertprofile.com/Profile/3992184764 Browse and select Windows Server 2016 ISO image to use it as installation source
  • 8. Hyper-V Replication on Windows Server 2016 8 | P a g e http://www.mycertprofile.com/Profile/3992184764 Connect to Server Core VM and start installation process
  • 9. Hyper-V Replication on Windows Server 2016 9 | P a g e http://www.mycertprofile.com/Profile/3992184764
  • 10. Hyper-V Replication on Windows Server 2016 10 | P a g e http://www.mycertprofile.com/Profile/3992184764
  • 11. Hyper-V Replication on Windows Server 2016 11 | P a g e http://www.mycertprofile.com/Profile/3992184764 Select Windows Server 2016 Standard Core
  • 12. Hyper-V Replication on Windows Server 2016 12 | P a g e http://www.mycertprofile.com/Profile/3992184764
  • 13. Hyper-V Replication on Windows Server 2016 13 | P a g e http://www.mycertprofile.com/Profile/3992184764 After installation is done, change local administrator password (we need it to access our server for first time)
  • 14. Hyper-V Replication on Windows Server 2016 14 | P a g e http://www.mycertprofile.com/Profile/3992184764 Manage server 2016 Core locally Windows Server 2016 Initial Configuration Login to server core using local administrator account, then use Sconfig to change server Initial Configuration like Server name and network configuration, so we can join our server to ITPROLABS.XYZ domain. Server Name: WebServer IP address: 192.168.153.52 SM:255.255.255.0 DNS: 192.168.153.10 DG: 192.168.153.2
  • 15. Hyper-V Replication on Windows Server 2016 15 | P a g e http://www.mycertprofile.com/Profile/3992184764 add IIS Role Type 15 to exit sconfig to command line mode then type PowerShell to access PowerShell mode. Through PowerShell use the following command to install IIS server role Install-WindowsFeature -name Web-Server -IncludeManagementTools -verbose After IIS installation is done, you can access WebServer through web as shown down
  • 16. Hyper-V Replication on Windows Server 2016 16 | P a g e http://www.mycertprofile.com/Profile/3992184764 Configure Hyper-V Replica Server add Hyper-V role through PowerShell add Virtual Switch to Hyper-V
  • 17. Hyper-V Replication on Windows Server 2016 17 | P a g e http://www.mycertprofile.com/Profile/3992184764 Hyper-V Replication Process Enable Hyper-V Replication settings To allow WebServer VM to replicate from Hyper-V01 server to another Hyper-V server (Hyper-V02), enable Hyper-V replication settings on both Hyper-V servers
  • 18. Hyper-V Replication on Windows Server 2016 18 | P a g e http://www.mycertprofile.com/Profile/3992184764 also, enable same settings on Hyper-V02 server
  • 19. Hyper-V Replication on Windows Server 2016 19 | P a g e http://www.mycertprofile.com/Profile/3992184764 Replication Process From Hyper-V01 server enable WebServer VM replication to Hyper-V02 server
  • 20. Hyper-V Replication on Windows Server 2016 20 | P a g e http://www.mycertprofile.com/Profile/3992184764 Browse and select Hyper-V server which will host the replicated VM, in our scenario replica server will be Hyper- V02 server.
  • 21. Hyper-V Replication on Windows Server 2016 21 | P a g e http://www.mycertprofile.com/Profile/3992184764
  • 22. Hyper-V Replication on Windows Server 2016 22 | P a g e http://www.mycertprofile.com/Profile/3992184764
  • 23. Hyper-V Replication on Windows Server 2016 23 | P a g e http://www.mycertprofile.com/Profile/3992184764 From task manager check network traffic, you will notice that there is no traffic before replication Replication Status When replication start, notice send traffic increase because the replication go through network as we configured.
  • 24. Hyper-V Replication on Windows Server 2016 24 | P a g e http://www.mycertprofile.com/Profile/3992184764 Go to another Hyper-V server which receive replicated VM, will notice increment in receive traffic
  • 25. Hyper-V Replication on Windows Server 2016 25 | P a g e http://www.mycertprofile.com/Profile/3992184764 Test replicated VM - Shutdown the main webserver VM then try to access IIS which hosted on this server
  • 26. Hyper-V Replication on Windows Server 2016 26 | P a g e http://www.mycertprofile.com/Profile/3992184764 Now, IIS services is down. - Go to replicated VM and follow the figures below to operate the replicated VM
  • 27. Hyper-V Replication on Windows Server 2016 27 | P a g e http://www.mycertprofile.com/Profile/3992184764 try again to access IIS on WebServer VM, Now is working through replicated VM.