错误信息 一

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.'

错误截图

SharePoint 2013 内容部署报错   

解决方法

设置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.'

错误截图

SharePoint 2013 内容部署报错

解决方法

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

命令

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

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

相关文章:

  • 2021-04-16
  • 2021-08-06
  • 2022-12-23
  • 2021-11-30
  • 2021-08-09
  • 2021-10-16
猜你喜欢
  • 2022-01-18
  • 2021-08-14
  • 2021-07-06
  • 2021-12-14
  • 2021-10-17
  • 2021-08-09
  • 2021-09-25
相关资源
相似解决方案