环境准备:DC虚拟机改名-安装AD域服务
storage虚拟机改名-安装-ISCSI目标服务器
为N1-N4启用嵌套虚拟化:Set-VMProcessor -VMName n1 -ExposeVirtualizationExtensions $true
启动N1-N4虚拟机
启动后通过Powershell安装Hy per-V功能和故障转移群集
Enter-PSSession -VMName n1 -Credential administrator
Get-WindowsFeature *hyper*
Install-WindowsFeature Hyper-V,Failover-Clustering -Restart
重复以上操作在N1-N4为虚拟机安装功能
Enter-PSSession -VMName DC -Credential administrator
Install-WindowsFeature RSAT-Hyper-V-Tools,Hyper-V-PowerShell,RSAT-Clustering -Restart
在DC中安装Hyper-V和故障转移群集的MMC远程管理工具
net user administrator P@ssw0rd
配置IP地址:连接到DC
查看网卡连接状态:Get-NetIPInterface | fl connectionstate,ifIndex
更改计算机名称:Rename-Computer -NewName N4 -Restart
get-netipaddress
New-NetIPAddress -InterfaceIndex 3 -IPAddress 10.1.1.1 -PrefixLength 8 -DefaultGateway 10.1.1.254-
Set-DnsClientServerAddress -InterfaceIndex 3 -ServerAddre sses 10.1.1.1
add-computer -computername N1 -domainname contoso.com –credential contoso\administrator -restart –force
核心安装版:Sconfig
存储环境配置:配置ISCSI目标服务器
本文出自 “涛哥的博客” 博客,请务必保留此出处http://zanghaitao.blog.51cto.com/818585/1960311
原文地址:http://zanghaitao.blog.51cto.com/818585/1960311