码迷,mamicode.com
首页 > 其他好文 > 详细

SharePoint 2013 内容部署报错

时间:2015-07-29 22:35:41      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:

错误信息 一

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 ‘rise3-staging-live‘ 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 2013 内容部署报错

标签:

原文地址:http://www.cnblogs.com/jianyus/p/4682881.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!