1. 程式人生 > >安裝配置 HYPER V Core SERVER 的基本命令 - Hyper V 2012 R2

安裝配置 HYPER V Core SERVER 的基本命令 - Hyper V 2012 R2

tps ipaddress 轉移 min ati new-vm wmi cat target

安裝配置 HYPER V Core SERVER 的基本命令 - Hyper V 2012 R2

1. 基本命令

安裝集群故障轉移角色

Install-WindowsFeature -name Failover-Clustering -IncludeManagementTools

關閉防火墻

netsh advfirewall set allprofiles state off

關閉IPv6

New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\services\TCPIP6\Parameters -Name DisabledComponents -PropertyType DWord -Value 0xffffffff

安裝 SNMP

Add-WindowsFeature -Name SNMP-Service -IncludeAllSubFeature -IncludeManagementTools

加入域之前檢查區域和時間的準確性 ,例如:

Set-Date -date "6/17/2018 5:10 AM

確保安裝了最新的 Update Rollups, hotfixes, 包括關鍵性補丁。

https://social.technet.microsoft.com/wiki/contents/articles/20885.hyper-v-update-list-for-windows-server-2012-r2.aspx

確保安裝最新的網卡驅動。例如:

Tip: to check Fibre HBA driver versions, use "Get-WmiObject -class MSFC_FCAdapterHBAAttributes -computername MyTestServer -namespace "root\WMI" | Select-Object DriverVersion, FirmwareVersion, Manufacturer, Model, SerialNumber | Format-Table -AutoSize"

掃描可用磁盤

"rescan" | diskpart

2. 網絡

重命名網卡,例如

Rename-NetAdapter -Name "Ethernet 5" -NewName iSCSI1

配置網卡IP

$netadapter = Get-NetAdapter -Name iSCSI1
$netadapter | New-NetIPAddress -AddressFamily IPv4 -IPAddress 192.168.10.2 -PrefixLength 24 -Type Unicast

給網卡配置DNS

Set-DnsClientServerAddress -InterfaceAlias <name> -ServerAddresses <DNS IP1>,<DNS IP2>

啟用 Jumbo frames

Set-NetAdapterAdvancedProperty -Name iSCSI1 -RegistryKeyword "*JumboPacket" -RegistryValue 9014

對iSCSI網卡禁用文件和打印共享

- 下載 NVSPbind : http://archive.msdn.microsoft.com/nvspbind/ , 拷貝到本地服務器

- 運行 nvspbind.exe . 列出所有網卡信息,啟用/禁用的協議。找出NIC ID(或者查看註冊表)

- 禁用文件和打印共享: 例如: nvspbind - d {913D8F46-BFC7-4359-A024-90485C276984} ms_server

更新網卡綁定順序,規則:iSCSI - 底部, cluster - 中部, “用於外部鏈接的網卡” - 頂部

- 查看當前順序: nvspbind /o ms_tcpip

- 移動到頂部: nvspbind /++ "Local Area Connection" ms_tcpip

- 向上移動一次: nvspbind /+ "Local Area Connection" ms_tcpip

- 移動到底部: "nvspbind /-- "iSCSI1" ms_tcpip"hvr.inf

創建 NIC Teaming:

New-NetLbfoTeam -name AdminTeam -TeamMembers VM1,VM2 -TeamingMode SwitchIndependent -LoadBalancingAlgorithm HyperVPort

創建 converged fabric switch:

‘‘‘ New-VMSwitch "ConvergedSwitch" –NetAdapterName "ConvergedTeam" –MinimumBandwidthMode Weight –AllowManagementOS $false‘‘‘

‘‘‘ Set-VMSwitch -Name "ConvergedSwitch" -DefaultFlowMinimumBandwidthWeight 0 ‘‘‘

加入虛擬網卡:

Add-VMNetworkAdapter -ManagementOS -Name "LiveMigration" -SwitchName "ConvergedSwitch"
Add-VMNetworkAdapter -ManagementOS -Name "ClusterCSV" -SwitchName "ConvergedSwitch"
Set-VMNetworkAdapter -ManagementOS -Name "LiveMigration" -MinimumBandwidthWeight 50
Set-VMNetworkAdapter -ManagementOS -Name "ClusterCSV" -MinimumBandwidthWeight 50
New-NetIPAddress -InterfaceAlias "vEthernet (LiveMigration)" -IPAddress 10.40.1.123 -PrefixLength "16"
New-NetIPAddress -InterfaceAlias "vEthernet (ClusterCSV)" -IPAddress 10.30.1.133 -PrefixLength "16"

查看虛擬網卡配置的權重:

"Get-vmnetworkadapter -ManagementOS | fl"

3. iSCSI 配置

Set-Service -Name MSiSCSI -StartupType Automatic
Start-Service MSiSCSI
Install-WindowsFeature Multipath-IO
Enable-WindowsOptionalFeature –Online –FeatureName MultiPathIO
Enable-MSDSMAutomaticClaim -BusType iSCSI
Set-MSDSMGlobalDefaultLoadBalancePolicy -Policy RR
Set-MPIOSetting -NewDiskTimeout 60
Connecting to an iSCSI SAN:
    - New-IscsiTargetPortal -TargetPortalAddress 192.168.30.10
    - Get-IscsiTarget | fl
    - Use ‘iscsicpl‘ to configure iSCSI targets or, as an example, connect using something like: "Connect-IscsiTarget -NodeAddress iqn.2001-05.com.equallogic:8-cb2b76-66f2c8e4a-67859b190555933f-vm2012 -AuthenticationType ONEWAYCHAP -ChapUsername liquid_chap2012 -ChapSecret chappassword–IsMultipathEnabled $True -IsPersistent $True"
    - Initialize a disk, if it‘s new: "Get-Disk | Where partitionstyle -eq ‘raw‘ | Initialize-Disk -PartitionStyle MBR -PassThru | New-Partition -AssignDriveLetter -UseMaximumSize | Format-Volume -FileSystem NTFS -NewFileSystemLabel "VMs2012-2" -Confirm:$false"

4. 光纖配置

    - Install-WindowsFeature Multipath-IO
    - Enable-WindowsOptionalFeature –Online –FeatureName MultiPathIO
    - Set-MSDSMGlobalDefaultLoadBalancePolicy -Policy RR
    - Set-MPIOSetting -NewDiskTimeout 60
    - Update-MPIOClaimedHW (and restart the server)
    - Launch mpiocpl. If the expected device (COMPELNT, for example) isn‘t in the devices list, click on the "Discover Multi-Paths" tab and add the FC SAN from the Others list (COMPELNT, for example). Restart the server.
    - To rescan available disks, use " "rescan" | diskpart "
    - Initialize a disk, if it‘s new: "Get-Disk | Where partitionstyle -eq ‘raw‘ | Initialize-Disk -PartitionStyle MBR -PassThru | New-Partition -AssignDriveLetter -UseMaximumSize | Format-Volume -FileSystem NTFS -NewFileSystemLabel "VMs2012-2" -Confirm:$false"

安裝配置 HYPER V Core SERVER 的基本命令 - Hyper V 2012 R2