Reputation: 556
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
Upvotes: 6
Views: 84111
Reputation: 91865
Decimal 2155348129
is 0x807800A1
in hex.
Quickly searching the Internet for this value takes me to this blog:
This error code is of a special type called an HRESULT
.
And TechNet has a table that lists our specific HRESULT value:
2155348129
0x807800A1
A Volume Shadow Copy Service operation failed. Please check "VSS" and "SPP" application event logs for more information.
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.
Upvotes: 3
Reputation: 21
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
Upvotes: 2
Reputation: 123
The answer by mtechnical put me on the right track, sorry don't have enough rep to vote you up.
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.
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
Upvotes: 0
Reputation: 31
I had a similar problem with VSS errors vs a SBS backup.
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.
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
Upvotes: 3
Reputation: 1
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.
Upvotes: 0
Reputation: 31
Sharepoint Foundation is causing the issue. By running the "Sharepoint 2010 Products Configuration Wizard", it will fix the backup issue.
Upvotes: 3