一、安装owa。
1、系统要求为Windows Server 2012,R2
2、增加相关角色和功能。
以管理员身份运行PowerShell
Add-WindowsFeatureWeb-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
这段PowerShell的意思是启用 Windows的相关的角色和功能,如墨迹手写服务,ASP.NET4.5,IIS服务等。
3、安装Office Web Apps,及相应补丁。
4、安装Office Web Apps语言包。
Office WebApps的语言包可以让用户的Office文档在sharepoint网站中以Web方式打开时,如果文档内包含有多种语言时,可以正常查看。语言包可以在以下链接打开:
http://www.microsoft.com/zh-cn/download/confirmation.aspx?id=35490
二、配置owa。
1、开启PowerShell键入如下命令,以加载OfficeWeb Apps管理命令集:
Import-Module OfficeWebApps
2、布署Office Web Apps:
New-OfficeWebAppsFarm -InternalURLhttp://xx.domin.com -ExternalURLhttp://xx.domin.com -AllowHttp-EditingEnabled –OpenFromUrlEnabled
或https地址
New-OfficeWebAppsFarm -InternalUrl "https://xx.domin.com" -ExternalUrl "https://xx.domin.com" –CertificateName "apps-owa" –EditingEnabled
New-OfficeWebAppsFarm 的使用及各参数含义可以去微软官网查看:http://technet.microsoft.com/zh-cn/library/jj219436.aspx
-InternalURL:内网浏览地址,http://xx.domin.com其中 xx表示计算机名 domin.com 表示域名
-ExternalURL:外网浏览地址
-AllowHttp 允许80端口访问
-Certificatename 证书的友好名称
-OpenFromUrlEnabled允许通过url方式进行预览
-CacheLocation 缓存文件存放路径默认是C:\ProgramData\Microsoft\OfficeWebApps\Working\d
-CacheSizeInGB 最大缓存文件大小单位GB 默认为15GB
执行完命令等待1到2分钟后会提示录入“Y”或“N”,录入“Y” 并回车,再次等待1到2分钟后提示完成。
三、验证:
可以在浏览器中输入下列Url以求证:
http://xx.domin.com/hosting/discovery
(其中http://xx.domin.com/ 的xx.domin.com为OfficeWebApps服务器的计算机全名。这个名称根据具体环境而设)
四、Office Web Apps Server默认在线浏览的文档大小为10MB以内,超过则会报错.
1、打开文件Settings_Service.ini,文件目录为C:\Program Files\Microsoft Office Web Apps\OpenFromUrlHost
在默认内容后添加(512000/1024M,可以根据自己的需求设定)
OpenFromUrlMaxFileSizeInKBytes=(System.Int32)512000;
2、修改 C:\Program Files\Microsoft Office Web Apps\OpenFromUrlWeb 下的Settings_Service.ini,进行相同的修改。
3、重启office web apps服务。
参考:
http://www.cnblogs.com/yanweidie/p/4516164.html
http://www.cnblogs.com/poissonnotes/p/3238238.html
转载于:https://blog.51cto.com/jackysz/1740907