exchange 2016版本只有两个角色
- 邮箱角色
- 边缘传输角色
而在exchange 2016,有一个功能,就是在owa界面预览文档,包括excel 、word 、 ppt 、 pdf 、等常见文档,这个功能就是使用office web apps来支持预览功能。在exchange 2016版本owa服务器需要使用下一代的owa服务器,名称为Office Web Apps vNext ,所以附加角色为:
3 . Office Web Apps vNext角色
注解:
Office Web Apps 是一个很重要的角色,
在lync(现名为skype for busines)中,ppt预览支持需要Office Web Apps 才能支撑
在sharepoint服务器中,要在网页中预览excel 、 word 、 ppt 、pdf等文档也是需要Office Web Apps 的支持
下面是对于owa的官方说法:
Exchange 2016 新增了一个可选先决条件,即在您组织的一个或多个服务器中安装下一版 Office Web Apps(以下简称“Office Web Apps vNext”)服务器。使用 Office Web Apps vNext 服务器,用户可以在 Outlook 网页版中查看受支持的文件附件,而无需先下载这些附件,也无需在本地安装相关程序。如果没有安装 Office Web Apps vNext 服务器,则 Outlook 用户需要将附件下载到其本地计算机上,然后在本地应用程序中打开它们。
下面介绍对该角色的安装进行介绍,简称改服务器为owav。
首先还是
1 系统要求:
- Windows Server 2012 R2
- 已安装所有可用的 Windows 更新
Office Web Apps vNext 服务器需要安装以下内容:
不能在 Exchange 服务器、SharePoint 服务器、Active Directory 域控制器或其他任何安装了现有应用程序的计算机上安装 Office Web Apps vNext 服务器。
2 先决条件:
在powershell中运行下面命令:
Install-WindowsFeature Web-Server, Web-Mgmt-Tools, Web-Mgmt-Console, Web-WebServer, Web-Common-Http, Web-Default-Doc, Web-Static-Content, Web-Performance, Web-Stat-Compression, Web-Dyn-Compression, Web-Security, Web-Filtering, Web-Windows-Auth, Web-App-Dev, Web-Net-Ext45, Web-Asp-Net45, Web-ISAPI-Ext, Web-ISAPI-Filter, Web-Includes, InkandHandwritingServices
重启服务器
3 安装owav
- 下载 Office Web Apps vNext 服务器。(软件下载地址在连接中)
- 转到下载的 Office Web Apps vNext 服务器位置,然后运行 setup.exe。
- 按照 Office Web Apps vNext 服务器安装向导操作,选择安装位置,然后单击“立即安装”。
- 如果要安装 Office Web Apps vNext 服务器语言包,请参阅 Office Web Apps Server 语言包。(如果要owav支持多国的语言,则需要下载对应的语言包)
- 获取并导入 SSL 证书,其中包含 Office Web Apps vNext 服务器的完全限定的域名 (FQDN)。如果您的组织配置了拆分 DNS 功能,则您只需要在证书上配置一个 FQDN。例如,wac.contoso.com。如果您有不同的内部和外部 FQDN,则需要在证书上配置两个 FQDN。例如,wac.internal.contoso.com 和 wac.contoso.com。
(注解:等正式版出来,搭建demo截图完善申请的步骤,大家可以参考旧版本的申请方式:http://xiaoyuanzheng.blog.51cto.com/7269200/1640406)
- 将 DNS 记录配置为将证书上的 FQDN 指向 Office Web Apps vNext 服务器。如果您有面向内部和外部用户的不同 DNS 服务器,则您需要在每个服务器上配置适当的 FQDN。
- 打开 Windows PowerShell 并运行以下命令。运行命令时,使用您自己的去替换示例 FQDN 和证书友好名称。
- 相同的内部和外部 FQDN
New-OfficeWebAppsFarm -InternalURL "https://wac.contoso.com" -ExternalURL "https://wac.contoso.com" -CertificateName "Office Web Apps vNext Certificate"
- 不同的内部和外部 FQDN
New-OfficeWebAppsFarm -InternalURL "https://wac.internal.contoso.com" -ExternalURL "https://wac.contoso.com" -CertificateName "Office Web Apps vNext Certificate"
之后在exchange 2016上加载了exchange命令的powershell运行下面命令
Set-MailboxServer -WacDiscoveryEndpoint
Restart-WebAppPool MsExchangeOwaAppPool
其中MBX是邮箱服务器的计算机名称(建议使用FQDN),后方的链接更改服务器名称为owav服务器的名称。