168.1.90???
$Cluster_Subnet=???255.255.255.0???
$Interface1_New=???Public???
$User (reused from user configuration)
$Password (reused from user configuration)
$Node1_Hostname=???MB001A???
$Logfile=???c:\mscs_install.txt???
cluster /cluster:$Cluster_Name /create
/IPAddr:$Cluster_IP,$Cluster_Subnet,$Interface1_New
/USER:$User /pass:$Password /node:$Node1_Hostname /verbose > $Logfile
2. The command creates a new cluster, but it is not the correct quorum type. There is no way to
set the cluster to the type Majority Node Set (MNS) during the initial creation. This will be
configured in Steps 3 and 4.
Cluster /cluster:$Cluster_Name /create /IPAddr:$Cluster_IP /USER:$User
/password:$Password /node:$Node1_Hostname /verbose > $logfile
3. The next command creates the Majority Node Set resource in the cluster group:
Cluster resource ???Majority Node Set??? /create -group:???cluster group???
-type:???Majority Node Set??? /online /wait
4. Now, change the cluster from a local quorum to Majority Node Set:
Cluster -quorum:???Majority Node Set???
Chapter 12: Working with Continuous Replication
339
5. The last step is to remove the Local Quorum resource that was created in the initial install:
Cluster res ???Local Quorum??? -offline -delete
6. Once the install is complete, the second node can be added by using the following script:
$Cluster_Name (reused from the initial configuration above)
$Node2_Hostname=???MB101???
$Password (reused from user configuration)
Cluster /cluster:$Cluster_Name /add:$Node2_Hostname /password:$Password /verbose
Creating and Assigning the File Share Witness
The file share witness (FSW) feature is an update for MNS clusters.
Pages:
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481