操作系统:windows 2012

软件下载地址: 链接:https://pan.baidu.com/s/1c3WWFs8 密码:4dcy

   NDP452-KB2901954-Web.exe(.Net Framework4.5)

   cn_office_web_apps_server_2013_with_sp1_x64_dvd_3832995.iso(office web apps server)

   wacserverlanguagepack.exe  (语言包)

   wacsp2010-kb2687470-fullfile-x64-en-us.exe (补丁包)

安装步骤:

1、安装.Net Framework4.5

2、以管理员身份运行powershell,执行以下命令安装基础环境,安装完成需要重启:

3、安装office web apps server 软件

  解压cn_office_web_apps_server_2013_with_sp1_x64_dvd_3832995.iso

  执行setup文件

4、切换至域账号登录,office web apps server的场环境创建需要以域账号登录创建

  以管理员账号运行powershell,执行以下命令:

  1)、导入office web apps server的模块

    Import-Module -Name OfficeWebApps

  2)、创建外部场:https://owa-wopi.example.com;SSLOffiloaded:把office web apps server的https认证的配置交给负载均衡来完成

    New-OfficeWebAppsFarm -ExternalURL “https://owa-wopi.example.com” -SSLOffloaded -EditingEnabled

  3)执行结果如下

    

5、测试正常结果如下:

  1)、访问owa-wopi.example.com/hosting/discovery

  

  2)、访问owa-wopi.example.com/op/generate.aspx(如果访问不了需要先设置Set-OfficeWebAppsFarm -OpenFromUrlEnabled -AllowHttp)

  

6、修改默认文件预览大小:

  Get-OfficeWebAppsFarm(查看owa-wopi场的参数设置)

  

  ExcelWorkbookSizeMax 50 表示可预览文件最大50M(默认是10M)

  修改可预览文件参数:Set-OfficeWebAppsFarm -ExcelWorkbookSizeMax 50

7、说明

  负载可用lvs+nginx实现  

  如果不加SSLOffloaded参数,那么就需要在office web apps server本地配置443端口的https,否则页面可能加载不出来

8、内存

  office web apps server服务器的IIS对内存的要求较高,所以建议最少内存为16G

  https://msdn.microsoft.com/zh-cn/subscriptions/ff431685(v=office.14).aspx(office相关技术说明)

  https://technet.microsoft.com/zh-cn/library/2e147f11-6f47-46bc-90bf-b2f179958d11#loadbalancer(官网部署office web apps server说明)

  https://technet.microsoft.com/zh-cn/library/jj219436.aspx(office web apps server 参数说明)

office web apps server安装部署的更多相关文章

  1. office web apps server安装

    1.准备服务器 准备一台windows server 2012 R2服务器,修改计算机名称加入域,如果是通过虚拟机复制导致sid冲突,可以先运行 c:\windows\system32\sysprep ...

  2. [转载]部署Office Web Apps Server并配置其与SharePoint 2013的集成

    Office Web Apps Server 是新的 Office 服务器产品,它提供 Word.PowerPoint.Excel 和 OneNote 的基于浏览器的版本.单个 Office Web ...

  3. 部署Office Web Apps Server并配置其与SharePoint 2013的集成

    部署Office Web Apps Server并配置其与SharePoint 2013的集成   Office Web Apps Server 是新的 Office 服务器产品,它提供 Word.P ...

  4. Windows Server 2012 R2安装部署Office Web Apps Server

    微软官方参考地址https://technet.microsoft.com/zh-cn/library/jj219455.aspx,建议参考官方说明. 注意:每一步进行完成后重启服务器!!! 一.   ...

  5. 安装Office Web Apps Server 2013 – KB2592525安装失败

    在Windows Server 2008 R2上安装 office web apps Server 的其中一个先决条件是 安装KB2592525. 但由于服务器已经打了SP1及其它大部分的patch, ...

  6. Office Web Apps Server 概述

    Office Web Apps Server 是新的 Office 服务器产品,它提供 Word.PowerPoint.Excel 和 OneNote 的基于浏览器的版本.单个 Office Web ...

  7. 新手必看!Office Web Apps 2013 安装与配置(实战)

    分享人:广州华软 星尘 一. 前言 Office Web Apps Server 是Office 服务器产品,它可提供在Sharepoint 2013网站中在线浏览和编辑 Word.PowerPoin ...

  8. Office Web Apps Server

    Office Web Apps Server Office Web Apps Server 是一款 Office 服务器产品,可提供针对 Office 文件的基于浏览器的文件查看和编辑服务.Offic ...

  9. office web apps的搭建部署(1)(写于2017.12.27)

    因为业务方面的需求,项目要求搭建office-web-apps这个玩意儿,做一个在线预览编辑的功能,为了方便,我下面都用OWA代替这个服务. 首先说一下什么是office-web-apps-serve ...

随机推荐

  1. 『Numpy』np.ravel()和np.flatten()

    What is the difference between flatten and ravel functions in numpy? 两者的功能是一致的,将多维数组降为一维,但是两者的区别是返回拷 ...

  2. stl中的for_each() 函数的注意事项

    #include<iostream> using namespace std; #include"vector" #include"algorithm&quo ...

  3. C# 3.0 / C# 3.5 系统内置委托

    内置委托的定义声明: System.Func,代表有返回类型的委托: public delegate TResult Func<out TResult>(); public delegat ...

  4. Spring Boot: remove jsessionid from url

    参考代码 :Spring Boot: remove jsessionid from url 我的SpringBoot用2.0.*,答案中的第一二个方案亲测无效. 应该在继承了Configuration ...

  5. 【LeetCode】大数相乘

    1. 模拟手工计算 原理: 将 string 反转存储在 int 数组中,如 A = 17 = (7, 1),B = 25 = (5, 2),亦即幂表示法,幂次是从低位到高位. 作逐位相乘,即 ai ...

  6. 牛客网第一场 A Monotonic Matrix

    链接:https://www.nowcoder.com/acm/contest/139/A来源:牛客网 Count the number of n x m matrices A satisfying ...

  7. 【转】JS常用函数整合库 lutils

    lutils 此工具包是在 outils 的基础上,加上个人平时收集的代码片段进行的二次整合 outils的GitHub:https://github.com/proYang/outils/blob/ ...

  8. Qt画笔实现波形区域图

    参考文章:https://blog.csdn.net/yuxing55555/article/details/79752978 效果图: void WareArea::paintEvent(QPain ...

  9. install sz rz linux

    1◆ ready 2◆ controller component   Xshell 注册码:690313-111999-999313 Xftp 注册码:101210-450789-147200   3 ...

  10. VIM编辑配置文件基本操作

    vim  /etc/apt/sources.list 按insert键进入编辑状态 编辑完成以后按ESC退出编辑状态 输入 ":"进入命令状态,常用命令: 1.W:write ,写 ...