Content deployment job failed.The remote Web service request failed with this message : 'The operation has timed out'

sharepoint.stackexchange https://sharepoint.stackexchange.com/questions/172564

문제

I am trying to Deploy Content from source to destination site collection. I am getting following Error:

Content deployment job 'Test Deployment Job' failed.The remote Web service request failed with this message : 'The operation has timed out'.

My Source Site is Team Site and Destination site is blank site enter image description here

My Web.Config:

<system.webServer>
    <security>
        <requestFiltering>
            <requestLimits maxAllowedContentLength="252428800"/>
         </requestFiltering>
    </security>
</system.webServer>
도움이 되었습니까?

해결책

Typically this issue occurs when you have a large amount of content for export. In this case, if you increase the RemoteTimeOut value on the exporting server will help. By default, that value is 10, but MSFT recommended to increase it up to 1 hours.

here is PowerShell for it.

[System.Reflection.Assembly]::Load("Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c")
$SharePointContentDeployment = [Microsoft.SharePoint.Publishing.Administration.ContentDeploymentConfiguration]::GetInstance()
$SharePointContentDeployment.RemoteTimeout = 3600
$SharePointContentDeployment.Update()

Changing the Time Out value of Content Deployment for SharePoint Server 2010/2013 with PoSH!

Timeouts during content deployment

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top