반응형

2018/02/13 - [SharePoint] - Office Online Server 구성

이전에 Office Online Server 설치 이후 SharePoint Server 와의 구성을 다루기로 했었는데, 바쁘다는 핑계로 한참 동안 포스팅하지 못했습니다.

 

아래의 기술자료를 기준으로 진행하였으며, 인증서를 보유 했기 때문에 HTTPS 진행하겠습니다.

Configure Office Online Server for SharePoint Server

https://docs.microsoft.com/en-us/officeonlineserver/configure-office-online-server-for-sharepoint-server-2016/configure-office-online-server-for-sharepoint-server-2016

 

Sharepoint 2016 Management 관리자 권한으로 실행합니다.

 

New-SPWOPIBinding -ServerName <WacServerName>

 

Set-SPWOPIZone -zone "external-https"

 

Get-SPWOPIZone

Enable the Excel SOAP API

$Farm = Get-SPFarm

$Farm.Properties.Add("WopiLegacySoapSupport", "https://wac.limcmfz.com/x/_vti_bin/ExcelServiceInternal.asmx");

$Farm.Update();

 

만약에 잘못 입력했으면 아래의 명령어로 같이 수정할 있습니다.

$Farm.Properties["WopiLegacySoapSupport"]=correct url    

$Farm.Update()

WopiLegacySoapSupport Value

https://social.technet.microsoft.com/Forums/ie/en-US/96043ab2-7abc-4e3f-b842-8360fd6b4646/wopilegacysoapsupport-value?forum=SP2016

 

(get-spfarm).Properties 확인

 

Step 5: Verify that Office Web Apps is working

아래의 문구를 읽어야합니다.

In SharePoint Server 2016, make sure you aren't logged on as System Account because you won't be able to edit or view the documents with Office Online. Go to a SharePoint Server 2016 document library that contains Office documents and view a Word, PowerPoint, Excel, or OneNote file. The document should open in a browser that displays the file by using Office Online.

만약 시스템 계정으로 로그인 하면,

"문제가 발생했습니다. 서버에 오류가 발생했습니다." 오류를 확인할 있습니다.

 

사용자 계정으로 로그인시, 아래와 같이 올바르게 동작되는 것을 확인할 있습니다.

반응형

+ Recent posts