Windows Server 2012 Server Core中安装活动目录
在Windows Sever 2012中,我们可以自由的切换Server Core和GUI图形界面,相信在今后会有更多的服务我们会运行在Server Core当中。下面本文将对在Server Core中对网络配置到修改计算机名,最后创建一个域进行一次叙述。 www.2cto.com
1. 配置网络
? 登陆到Server Core中,在命令提示符输入Sconfig
? 在Sconfig中选择8>网络设置。
? 选择需要进行修改的网络适配器编号,这里为10
? 根据向导依次对IP地址、子网掩码、默认网关进行设置。
2. 修改计算机名
? 进入到Sconfig中,选择2>计算机名
? 输入新的计算机名称,确认,然后重启计算机。
www.2cto.com
3. 配置Active Directory
从Windows Server 2012起,弃用了dcpromo.exe,但可以使用 Windows PowerShell 安装 AD DS。
? 在命令提示符输入powershell,进入到windows powershell。
? 执行以下命令进行角色安装。
Install-windowsfeature -name AD-Domain-Services -IncludeManagementTools
? 完成安装后,进行下安装新 Active Directory 林的前提条件测试。
? 在Powershell中运行Test-ADDSForestInstallation。
? 输入DomainName:contoso.com
? 输入safemodeadministratorpasswor
? 确认,进行测试。
? 完成测试后使用 Windows PowerShell 安装新林根域,这里我们需要创建一个contoso.com的根域。
? 在Powershell中运行Install-ADDSForest –domainname "contoso.com",运行 Install-ADDSForest 时,默认情况下会安装 DNS 服务器。
? 依次键入DSRM 密码,开始安装根域,完成后自动重启服务器。
www.2cto.com