如何搭建Office Web Apps Server2013,并在SharePoint2013中集成使用

【如何搭建Office Web Apps Server2013,并在SharePoint2013中集成使用】分享给互联网技能从业者学习和参考。

Office Web Apps 2013提供了Word、PowerPoint、Excel和OneNote这类Office文件在Web上查看和编辑的功能,并且可以和SharePoint2013,Lync Server2013,Exchange Server2013集成使用。本文主要介绍Office Web App Server2013的搭建和如何集成SharePoint2013。

配置Office Web App Server2013的必要条件

Windows Server的版本不同,prerequisites就不一样,我们先要确认好打算在什么版本系统中安装OWA Server,并且根据对应的先决条件安装配置。

Windows Server 2008 R2: 安装下面软件: Windows Server 2008 R2 Service Pack1.NET Framework4.5Windows PowerShell3.0Platform update for Wondows 7 SP1 and Windows Server 2008 R2 SP1(KB2670838)用Administrator打开Windows Powershell,按顺序执行下面脚本安装必要的roles和services: Import-Module ServerManagerAdd-WindowsFeature Web-Server,Web-WebServer,Web-Common-Http,Web-Static-Content,Web-App-Dev,Web-Asp-Net,Web-Net-Ext,Web-ISAPI-Ext,Web-ISAPI-Filter,Web-Includes,Web-Security,Web-Windows-Auth,Web-Filtering,Web-Stat-Compression,Web-Dyn-Compression,Web-Mgmt-Console,Ink-Handwriting,IH-Ink-Support,NET-Framework,NET-Framework-Core,NET-HTTP-Activation,NET-Non-HTTP-Activ,NET-Win-CFACWindows Server2012: 用Administrator打开Windows Powershell,执行下面脚本安装必要的roles和services: Add-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,NET-Framework-Features,NET-Framework-Core,NET-HTTP-Activation,NET-Non-HTTP-Activ,NET-WCF-HTTP-Activation45

Windows Server2012 R2: 安装下面软件: .NET Framework 4.5.2用Administrator打开Windows Powershell,执行下面脚本安装必要的roles和services: Add-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,NET-Framework-Features,NET-Framework-Core,NET-HTTP-Activation,NET-Non-HTTP-Activ,NET-WCF-HTTP-Activation45安装Office Web App Server2013

到微软网站中下载Office Web Apps Server 2013安装文件,并进行安装。


 使用HTTP部署Single- Server Office Web App创建Office Web App Farm 使用New-OfficeWebAppsFarm脚本新建Office Web App farm。

New-OfficeWebAppsFarm –InternalURL“http://servername” –AllowHttp –EditingEnabled

其中,http://servername中Server填写OWA Server的机器全名。

在Office Web App Server中确认是否创建成功,输入地址:

http://servername/hosting/discovery

创建成功打开效果:

 

 


为SharePoint2013配置Office Web App2013

在SharePoint环境中用Administrator打开SharePoint 2013 Management Shell,执行下面命令:

New-SPWOPIBinding -ServerName<WacServerName> -AllowHTTP

其中,WacServerName填写Office Web App Server的全名。

 

到此在SharePoint2013中就可以使用Office Web App的功能,我们可以使用非System Account用户登录SiteCollection,在Library中新建或者点击file进行preview。


如何搭建Office Web Apps Server2013,并在SharePoint2013中集成使用