安装Nano服务器并配置

2020-08-07  本文已影响0人  陳陳陳ccc

Windows Server 2016 提供了新的安装选项:Nano Server。 Nano Server 是针对私有云和数据中心进行优化的远程管理的服务器操作系统。 它类似于服务器核心模式中的 Windows Server,但显著变小,无本地登录功能,且仅支持 64 位应用程序、工具和代理。 其所需的磁盘空间更小,启动速度明显更快,且所需的更新和重启操作远远少于 Windows Server。 当它未重新启动时,则可以更快地重新启动。 Nano Server 安装选项仅适用于 Windows Server 2016 的 Standard 和 Datacenter 版本。

Nano Server 非常适合于多种方案:
1.作为 Hyper-V 虚拟机的计算主机,无论是否在群集中
2.作为横向扩展文件服务器的存储主机。
3.作为 DNS 服务器
4.作为运行 Internet Information Services (IIS) 的 Web 服务器
5.作为使用云应用程序模式开发以及在容器或虚拟机来宾操作系统中运行的应用程序的主机

一、安装Nano服务器
1.1 将 NanoServer 文件夹从 Windows Server 2016 ISO 中 \NanoServer 文件夹复制到你硬盘上的文件夹。

01.png

1.2 以管理员身份启动 Windows PowerShell,将目录更改为 NanoServerImageGenerator 文件夹所在的文件夹,然后使用 Import-Module .\NanoServerImageGenerator -Verbose 导入模块


02.png
Import-Module .\NanoServerImageGenerator\NanoServerImageGenerator.psm1 -Verbose

1.3 通过运行以下命令(将提示你输入新 VHD 的管理员密码)创建用于设置计算机名和包括 Hyper-V 来宾驱动程序的标准版 VHD


03.png
New-NanoServerImage -Edition Datacenter -DeploymentType guest -MediaPath F: -BasePath E:\Nano1 -TargetPath E:\Hyper-V\Nano1\nano.vhdx -ComputerName nano1

1.4 导入虚拟机显示已经安装好了


04.png

二、远程管理Nano服务器
2.1 登录nano服务器,并关闭防火墙进站,并设置静态ip

06.png 07.png 1.png

2.2 生成离线加域文件。

djoin.exe /provision /domain domainname /machine nanoname /savefile c:\temp\odjblob
2.png

2.3 设置远程授信任,远程连接nano服务器

Set-Item WSMan:\localhost\Client\TrustedHosts "192.168.137.141" #添加受信任
$ip = "192.168.137.141"  #定义变量ip
Enter-PSSession -ComputerName $ip -Credential $ip\administrator #远程连接
3.png

2.4 查看网络接口,配置nano服务器dns

 netsh interface ip show interfaces  #查看接口
 netsh interface ip set dnsservers name="以太网" static 192.168.137.129 primary   #设置Dns
4.png

2.5 在Nano上运行djoin以完成域加入操作

djoin /requestodj /loadfile c:\temp\odjblob /windowspath c:\windows /localos  #执行加域
shutdown /r #关机
5.png

2.6 查看nanoserver 显示加域成功


6.png

本文参考了以下
https://docs.microsoft.com/zh-cn/windows-server/get-started/getting-started-with-nano-server

https://petri.com/join-windows-server-2016-nano-domain

上一篇下一篇

猜你喜欢

热点阅读