zoukankan      html  css  js  c++  java
  • sharepoint2016安装OOS,OOS场负载均衡

    Office Online Server is the successor to Office Web Apps Server. It may be connected to SharePoint, Exchange, Skype for Business and many other applications to display, create, edit Microsoft Office documents. The following procedure will guide you through the installation process to deploy Office Online Server with SharePoint Server 2016.

    Execute the following PowerShell command with administrative privileges to install the required Windows Features on your Office Online Server(s):

    1
    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,NET-Framework-Features,NET-Framework-Core,NET-HTTP-Activation,NET-Non-HTTP-Activ,NET-WCF-HTTP-Activation45,Windows-Identity-Foundation,Server-Media-Foundation
    

      

    Install these software packages on your Office Online Server(s):
    .NET Framework 4.5.2
    Visual C++ Redistributable Packages for Visual Studio 2013
    Visual C++ Redistributable for Visual Studio 2015
    Microsoft.IdentityModel.Extention.dll

    Download the Office Online Server software from your Microsoft software portal and run the installer using an administrative account on your Office Online Server(s). You you need to install any language packs, you may download them here: http://go.microsoft.com/fwlink/p/?LinkId=798136.

    Restart the Office Online Server(s).

    Create a DNS A-record for oos.yourdomain.com and point it to the Office Online Server or the Load Balancer if you have more than one Office Online Servers.

    Create a SSL certificate which contains an entry for oos.yourdomain.com. You may also use a wildcard certificate for yourdomain.com. Add this certificate to the certificate store of your Office Online Server(s) – just double click and choose to install it for the machine.

    Modify and execute the following PowerShell commands on one of your Office Online Server(s).

    Add the parameter -externalURL to define a different URL for accessing your Office Online Server farm. Shouldn’t be needed in most cases because you’re already using a FQDN with your internal URL. The parameter –CertificateName reflects the friendly name of your certificate.

    Open https://oos.yourdomain.com/hosting/discovery in your browser. Proceed if you see a XML page.

    Move over to one of your SharePoint servers, open the SharePoint Management Shell and execute the following commands:

    New-SPWOPIBinding -ServerName oos.yourdomain.com
    Set-SPWOPIZone -zone "external-https"
     
    $Farm = Get-SPFarm
    $Farm.Properties.Add("WopiLegacySoapSupport", "https://oos.yourdomain.com/x/_vti_bin/ExcelServiceInternal.asmx");
    $Farm.Update();
    

    Optional: Reboot your servers (I think it might help…).

    Navigate to a SharePoint site using a non-admin user (don’t use the install or farm user) and try to create a new document. It works? You’re all set. If you have trouble make sure you rebooted the servers and re-check the steps above.

    To join additional Office Online Servers to the Office Online Server farm execute the following PowerShell command on the Office Online you want to add:

    New-OfficeWebAppsMachine -MachineToJoin "oosserver1.yourdomain.com"

    Server1.yourdomain.com reflects the name of a Office Online Server that is already in the farm.

    More information on TechNet: https://technet.microsoft.com/en-us/library/jj219455(v=office.16).aspx

      

  • 相关阅读:
    c/c++ # and ## in macros以及宏debug
    postgresql unnamed statement
    postgresql/lightdb a [left/right] join b on true的含义
    openjdk、javafx各发行版
    lightdb for postgresql PL/pgSQL perform、execute、call区别
    postgresql有mysql兼容插件吗?
    各种互联网公司,不要再那么没有分寸的刷屏QPS/TPS/日活千万这些毫无意义的数据了
    PostgreSQL分布式数据库实践
    LightDB发布日常运维管理手册
    恒生电子发布金融分布式数据库LightDB
  • 原文地址:https://www.cnblogs.com/olay/p/7568595.html
Copyright © 2011-2022 走看看