SharePoint 2013 内容部署报错

简介: 错误信息 一 Export ran out of memory while compressing a very large file. To successfully export, turn compression off by specifying the -nofilecompression parameter.

错误信息 一

Export ran out of memory while compressing a very large file. To successfully export, turn compression off by specifying the -nofilecompression parameter.

Content deployment job 'GDeploy' failed.The exception thrown was 'Microsoft.SharePoint.SPException' : 'Export ran out of memory while compressing a very large file. To successfully export, turn compression off by specifying the -nofilecompression parameter.'

错误截图

   

解决方法

设置SPContentDeploymentPath的CompressionEnabled属性为false,让部署过程不再压缩。

命令

Get-SPContentDeploymentPath "Path 1" | Set-SPContentDeploymentPath -CompressionEnabled:$false

参考链接

https://technet.microsoft.com/en-us/library/ff608100.aspx

其他参考

http://blogs.technet.com/b/stefan_gossner/archive/2008/05/28/pimp-my-content-deployment-job.aspx

 

错误信息 二

The changeToken refers to a time before the start of the current change log.

Content deployment job 'job-name' failed.The exception thrown was 'Microsoft.SharePoint.SPException' : 'The changeToken refers to a time before the start of the current change log.'

错误截图

解决方法

https://technet.microsoft.com/en-us/library/dd795107(v=office.12).aspx

命令

Get-SPContentDeploymentJob "job name" | Set-SPContentDeploymentJob -IncrementalEnabled:$false

将内容部署设置为完全部署,执行一次即可;其间还碰到有个别文档或者文档库部署冲突,删掉即可。

目录
相关文章
SharePoint 2016 工作流报错“没有适用于此应用程序的地址”
  前言   最近为SharePoint 2016配置工作流,创建工作流的过程中遇到这样一个错误,记录分享下来,希望能够为有需要的人带来帮助。   错误截图   创建完毕工作流,发布的时候报错,保存没有问题。
1254 0