Chapter 14 - Failover Clustering - Do I know this already? Flashcards
What parameter of the New-Cluster cmdlet allows you to specify DNS?
a. administrativeaccesspoint
b. resolver
c. adsource
d. nameserver
a. administrativeaccesspoint
What quorum witness type is new to Server 2016?
a. Disk
b. File Share
c. Cloud
d. Server
c. Cloud
What cmdlet lets you to move a cluster out of the Mixed-OS mode?
a. Update-ClusterFunctionalLevel
b. Update-Cluster
c. Update-OS-Mode
d. Update-OSMode
a. Update-ClusterFunctionalLevel
Which of the following is not a VM state in VM resiliency?
a. Test
b. Unmonitored
c. Isolated
d. Quarantined
a. Test
What cmdlet allows you to create a new CSV?
a. Update-ClusterSharedVolume
b. Create-ClusterSharedVolume
c. New-ClusterSharedVolume
d. Add-ClusterSharedVolume
d. Add-ClusterSharedVolume
Which of the following is not a requirement for a Scale-Out File Server?
a. Shared storage
b. Proper Failover Clustering configuration
c. 32 GB or RAM per node
d. Failover Clustering feature installation
c. 32 GB or RAM per node
What are Nodes in Windows Server terms?
Members of a failover cluster.
What is a Cluster Name Object (CNO)?
An object for the cluster in Active Directory.
What is a Quorum in Windows Server terms?
A method of preventing a split-brain cluster.
What is a Witness in Windows server terms?
A device that acts as a tie-breaker in a quorum.
What is Cluster-Aware Updating (CAU)?
Windows Update technology for clusters.
What is a Rolling Upgrade?
An update of the OS in machines of a cluster on a gradual basis.
What is CSVFS?
A pseudo file system that sits on top of NTFS in a Clustered Shared Volume (CSV).
What is Scale-Out File Server (SoFS)?
A clustered role that provides highly available storage for applications.
Name at least four requirements for successful failover clustering.
- Identical hardware and configuration on nodes; network adapters with identical configurations
- Certified for Windows Server 2016 logos; same OS versions and editions and updates
- separate networks for various traffic forms recommended
- redundant networking equipment recommended
What cmdlet in PowerShell creates a new cluster?
New-Cluster
Name three clustered storage pools requirements.
Minimum of three disks, 4 GB each, and SAS or iSCSI
Name at least four usage scenarios for guest clusters.
- Node monitoring
- application migration
- host availability
- VM migration
- nested clustering
What are the requirements for failover clustering?
- Nodes of the cluster should be as identical in hardware configurations as possible; this includes items such as CPU number and type and memory installations.
- Network adapters in nodes should have identical configurations.
- For full Microsoft support, systems should feature the Certified for Windows Server 2016 logo.
- All nodes should run the same OS versions and edition and should have the same updates installed.
- Separate networks are recommended for cluster traffic as well as shared storage and management traffic.
- Redundant networking equipment should be considered to help eliminate single points of failure.
How do you create a multi-domain cluster?
Step 1. Create a local account: Specifically, create a local user account on every node, with the same user name and the same password; add the user to the local Administrators group; you can also use the built-in Administrator account as long as the password is the same on each node; if you do not use the Administrator account, you must set a registry key called LocalAccountTokenFilterPolicy on every node
Step 2. Add DNS suffixes: Without Active Directory, a cluster must use DNS to locate the cluster nodes and the cluster itself. You need to specify a primary DNS suffix when assigning a name to each node in the System applet of Control Panel; for a multi-domain cluster, configure the Advanced TCP/IP Settings in every node with the DNS suffixes for all the domains represented in the cluster
Step 3. Create the workgroup or multi-domain cluster
How do you create a local account for a multi-domain cluster in powershell with administrative privileges ?
new-itemproperty -path hklm:\software\microsoft\ windows\currentversion\policies\system -name localaccounttokenfilterpolicy -value 1
How do you add DNS suffixes in Powershell?
Set- DnsClientGlobalSettings PowerShell cmdlet
How do you create a Create the workgroup or multi-domain cluster in Powershell?
use the New-Cluster cmdlet but include the AdministrativeAccessPoint parameter with the DNS value:
new-cluster -name mycluster1 -node server1,server2,server3 -administrativeaccesspoint dns
What are three types of Quorum Witness in multi-domain clustering?
- Disk witness
- File share witness
- Cloud witness