sharepoint 2013 和 office web apps server 2013集成
环境: 三台服务器 系统:window 2008 R2
server01: 192.168.10.162(office web app)
server02: 192.168.10.163(AD)
server03: 192.168.10.164(sharepoint)
前提:1. server02配置好AD
2. server01和 server03 这两台服务器修改好机器名,加入域。
安装office web app:
在server01上安装office web app
1)安装 .net framework 4.5 (http://go.microsoft.com/fwlink/p/?LinkId=256560)
安装window2008 R2更新程序 (http://go.microsoft.com/fwlink/p/?LinkId=236954)
安装window powershell 3.0 http://go.microsoft.com/fwlink/?LinkID=244693)
2)管理员运行powershell执行:Import-Module ServerManager
Add-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
3)安装office web apps server
4)安装office web apps补丁 http://www.microsoft.com/zh-cn/download/confirmation.aspx?id=38378
5)安装中文语言包:(http://go.microsoft.com/fwlink/p/?LinkId=296579)
配置office web apps
管理员打开powershell
1)新建场和开启访问:New-OfficeWebAppsFarm –InternalURL "http://app.lishen88.com" –AllowHttp –EditingEnabled
2)添加允许域:New-OfficeWebAppsHost -Domain lishen88.com
3)允许通过url访问:Set-OfficeWebAppsFarm -OpenFromUrlEnabled:$true
测试office web apps是否正常
在浏览器访问:
http://app.lishen88.com/hosting/discovery
http://app.lishen88.com/op/generate.aspx,生成文档地址,然后访问。
如果报内部错误,在cmd下执行:
%systemroot%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -iru
iisreset /restart /noforce
日志:%programdata%\Microsoft\OfficeWebApps\Data\Logs\ULS\
安装SharePoint:
1)安装好sql server 2008 sp1,如果不是sp1,请打好补丁
2)打开sharepoint安装目录下的splash.hta,在线安装依赖
3)依赖安装完成后,安装SharePoint。
4)执行SharePoint配置向导配置SharePoint。
5)执行配置SharePoint场向导,注意新建一个用户作为服务用户。
SharePoint和office web app的集成:
管理员打开SharePoint shell,执行下面操作
1)绑定:New-SPWOPIBinding -ServerName app.lishen88.com –AllowHTTP
2) 指定http访问:Set-SPWOPIZone –zone “internal-http
查看:Get-SPWopiZone
3)查看是否允许http验证:(Get-SPSecurityTokenServiceConfig).AllowOAuthOverHttp
如果不是,执行:
$config = (Get-SPSecurityTokenServiceConfig)
$config.AllowOAuthOverHttp = $true
$config.Update()
4. 保证claim to window token service 正常运行
保证Net.Pipe Lishener Adapter service 正常运行
5. 测试在线浏览和修改文档
1)新建一个站点,以管理员打开,然后共享给一个域用户。
2)使用共享的域用户登录网站,然后上传文档,新建文档,看看功能是否正常。
sharepoint 2013 和 office web apps server 2013集成的更多相关文章
- Office Web Apps Server 2013与PDF(一)
好吧--这个消息有点旧,迟了将近4个月. Office Web Apps是微软各大服务产品系列中的一个基础服务,可以为SharePoint 2013.Exchange 2013.Lync 2013提供 ...
- Office Web Apps Server 2013与PDF(二)
在上一篇文章(Office Web Apps Server 2013与PDF(一))中,曾经介绍了Office Web Apps Server 2013在更新后,可以直接对PDF文档进行在线的查看.不 ...
- 安装Office Web Apps Server 2013 – KB2592525安装失败
在Windows Server 2008 R2上安装 office web apps Server 的其中一个先决条件是 安装KB2592525. 但由于服务器已经打了SP1及其它大部分的patch, ...
- [转载]部署Office Web Apps Server并配置其与SharePoint 2013的集成
Office Web Apps Server 是新的 Office 服务器产品,它提供 Word.PowerPoint.Excel 和 OneNote 的基于浏览器的版本.单个 Office Web ...
- 部署Office Web Apps Server并配置其与SharePoint 2013的集成
部署Office Web Apps Server并配置其与SharePoint 2013的集成 Office Web Apps Server 是新的 Office 服务器产品,它提供 Word.P ...
- Office Web Apps Server 概述
Office Web Apps Server 是新的 Office 服务器产品,它提供 Word.PowerPoint.Excel 和 OneNote 的基于浏览器的版本.单个 Office Web ...
- Office Web Apps Server(1)
Office Web Apps Server runs on one or more servers and provides browser-based Office file viewi ...
- BEGINNING SHAREPOINT® 2013 DEVELOPMENT 第14章节--使用Office Services开发应用程序 WOPI和新的Office Web Apps Server
BEGINNING SHAREPOINT® 2013 DEVELOPMENT 第14章节--使用Office Services开发应用程序 WOPI和新的Office Web Apps Server ...
- SharePoint 2013中Office Web Apps的一次排错
转自http://www.cnblogs.com/awpatp/archive/2013/06/06/3121420.html, 仅供自己查看 笔者尝试在自己的测试环境中为SharePoint 201 ...
随机推荐
- 二叉树 【转】http://blog.csdn.net/sjf0115/article/details/8645991
//二叉树 #include<iostream> #include<stack> #include<queue> using namespace std; //二叉 ...
- vue.js中created方法作用
这是它的一个生命周期钩子函数,就是一个vue实例被生成后调用这个函数.一个vue实例被生成后还要绑定到某个html元素上,之后还要进行编译,然后再插入到document中.每一个阶段都会有一个钩子函数 ...
- 每天一个Linux命令(7):pwd命令
pwd命令以绝对路径的方式显示用户当前工作目录. 语法 pwd(选项) 选项 --help:显示帮助信息: --version:显示版本信息. 实例 [root@localhost ~]# pwd / ...
- Oracle 学习----:ora-00054 资源正忙 ,但指定以nowait方式获取资源 ,或者超时失效---解决方法
1.查询被锁的会话ID: select session_id from v$locked_object;查询结果:SESSION_ID-------92.查询上面会话的详细信息: SELECT sid ...
- Abstract Factory 抽象工厂(创建型模式)
1.常规的对象创建方法(以更换QQ空间主题为例) (这里的常规对象指的是由于业务需求,当前实例化的对象有可能被其他相似的对象(有着共同的特性)所取代,例如更换手机铃声:一首歌取代另一首歌(词,曲,和声 ...
- hdu 1203 01背包 I need a offer
hdu 1203 01背包 I need a offer 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1203 题目大意:给你每个学校得到offe ...
- 团队项目-第二次Scrum 会议
时间:10.24 时长:30分钟 地点:线上 工作情况 团队成员 已完成任务 待完成任务 解小锐 学习官方样例 根据初步讨论结果编写初步的api文档 陈鑫 学习cocos creator基本使用 采用 ...
- (总结)统计Apache或Nginx访问日志里的独立IP访问数量的Shell
1.把IP数量直接输出显示:cat access_log_2011_06_26.log |awk '{print $1}'|uniq -c|wc -l 2.把IP数量输出到文本显示:cat acces ...
- 第十五篇:jQuery
本篇内容 简介 使用 一. 简介 jQuery 是一个 JavaScript 库. jQuery 极大地简化了 JavaScript 编程. jQuery 很容易学习. jQuery 库可以通过一行简 ...
- POJ 1061 青蛙的约会 | 同余方程和exGcd
题解: 要求s+px=t+qx (mod L) 移项 (p-q)x=t-s (mod L) 等价于 (p-q)x+Ly=t-s 即ax+by=c的方程最小非负根 exGcd后乘个C #include& ...