Windows Volume shadow copy error: 2155348129
Asked Answered
S

6

6

Developing a VSS writer app:
see this error during backup, initiated by windows backup tool, is there defined error codes for 2155348129 from Microsoft?

The backup operation that started at '‎2010‎-‎07‎-‎20T02:54:19.354000000Z' has failed because the Volume Shadow Copy Service operation to create a shadow copy of the volumes being backed up failed with following error code '2155348129'

This does not happen when VSSwriter service (my application) is stopped.

Any help is appreciated. Nothing useful found on TechNet.

Hackish workaround: Interestingly the back up works is when "windows partition is made active". Of course this leaves the system non-boot-able upon restart

Saccule answered 20/7, 2010 at 14:20 Comment(3)
This belongs on superuser. Not development related.Medrek
no, this is related to application development and not just system administration. There is a component called VSS writer implemented using VSS API.Saccule
Then you need to rewrite your question as "I'm developing a VSS writer component, but when I attempt to do a backup using it, I get ..."Kiger
K
3

TechNet Blog

Decimal 2155348129 is 0x807800A1 in hex.

Quickly searching the Internet for this value takes me to this blog:

It's an HRESULT

This error code is of a special type called an HRESULT.

Namely it's a VSS related HRESULT

And TechNet has a table that lists our specific HRESULT value:

Note: VSS is short for Volume Shadow Copy Service. SPP is short for Shared Protection Point. They log into the regular Windows application event log. And they use VSS and SPP as their event-Source-identifier.

Kiger answered 20/7, 2010 at 15:18 Comment(1)
social.technet.microsoft.com/Forums/en-US/winserverfiles/thread/… this has some recommendation to make windows partition active, but that makes OS not boot-able after restart. Is this a bug with Windows?Saccule
C
3

I had a similar problem with VSS errors vs a SBS backup.

Wasn't low disk space in my case

Dell Pro Support (very good) discounted the issue being with the HDD configuration which is referred to all over the www. They did say to watch out for HDDs that are very low on space causing VSS issues for Server backup but this was not the case.

Check VSS writer status

My Fix:
Run vssadmin list writers and see if they have stalled as part of the backup. A reboot or two should set these back to normal. Try a backup now.
Check to see if any SharePoint updates are causing the issue. Run the SharePoint Configuration Wizard from the start menu (Next, Next, Finish), reboot and rerun the backup.

Hope this helps someone else out there - let me know if you need any more info.

www.mtechnical.co.uk

Colwin answered 11/7, 2011 at 15:37 Comment(0)
R
3

Sharepoint Foundation is causing the issue. By running the "Sharepoint 2010 Products Configuration Wizard", it will fix the backup issue.

Rotl answered 22/8, 2011 at 16:57 Comment(0)
S
2

I had this problem on my W Server 2008 R2. I finaly found that a virtual server instance was running on my hyper-v server. Apparently there is a bug that cannot handle parallellism of backups of the v-server and the real server.

I believe I read that there is a fix for this in the knowledge base:

When shutting down the (not important) virtual machine that was running, the issue was resolved

Seigneur answered 15/12, 2010 at 15:3 Comment(0)
N
0

The answer by mtechnical put me on the right track, sorry don't have enough rep to vote you up.

Cause was SharePoint VSS writer

Basically vssadmin list writers allowed me me to see that SPSearch4 VSS Writer was holding everything up with an inconsistent shadow copy error and a few quick Google searches later I was all good.

Hopefully that helps you get to where you need to be.

Underlying cause was SharePoint Service Pack

In case anyone else gets here due to backup failing with SBS 2011 even on a clean install with all patches, the cause is due to the SharePoint Server service pack. To resolve run the Sharepoint 2010 Products Configuration Wizard. And after that you should be able to re-run vssadmin list writers and see all errors are cleared.

Cheers Kactus

Neysa answered 15/7, 2011 at 6:39 Comment(0)
C
0

I had a SQL server installed. With too many databases. When I deleted some databases the error went away and the backup could continue as normal.

Casemate answered 21/2, 2014 at 10:5 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.