Error 0xe00086cc in Backup Exec: Causes, Solutions, and Prevention Strategies
Backup Exec is a popular data protection and recovery software used by organizations to backup and restore their critical data. However, like any other complex software, it's not immune to errors. One such error that has been reported by several users is the 0xe00086cc error. In this article, we'll discuss the causes, solutions, and prevention strategies for the 0xe00086cc error in Backup Exec.
What is Error 0xe00086cc?
The 0xe00086cc error is a common error code that occurs in Backup Exec, typically during the backup or restore process. The error message may vary depending on the specific situation, but it usually indicates a problem with the backup or restore operation. The error code 0xe00086cc is a hexadecimal code that represents a specific error condition.
Causes of Error 0xe00086cc
After analyzing various user reports and technical documents, we've identified some common causes of the 0xe00086cc error:
Solutions to Error 0xe00086cc
To resolve the 0xe00086cc error, try the following solutions:
Advanced Solutions
If the above solutions don't work, you may need to perform more advanced troubleshooting:
Prevention Strategies
To prevent the 0xe00086cc error from occurring in the future, follow these best practices:
Conclusion
The 0xe00086cc error in Backup Exec can be caused by various factors, including corrupted databases, insufficient disk space, network connectivity issues, outdated device drivers, and conflicting software. By understanding the causes and solutions to this error, you can quickly resolve the issue and prevent it from happening in the future. Regular maintenance, updates, and testing can help ensure that your backup and restore operations are running smoothly.
The error code 0xe00086cc in Veritas Backup Exec typically indicates a communication or trust failure between the media server and the Remote Agent on the target machine. This specific hex code (often paired with "Access is denied" or "The resource could not be backed up") usually stems from mismatched credentials, outdated agents, or a broken security certificate. Core Causes of Error 0xe00086cc
Trust Relationship Issues: The security certificate between the Backup Exec server and the remote computer is missing or invalid.
Credential Mismatch: The Backup Exec Service Account (BESA) or the System Logon Account has a password that has expired or does not match the credentials on the target server.
Version Discrepancy: The Remote Agent (RAWS) on the target machine is older than the version running on the media server.
Network/WMI Blocks: Firewall rules or disabled services (like WMI) are preventing the initial handshake. Step-by-Step Troubleshooting Guide 1. Establish a Manual Trust Relationship
If the trust was not established during the initial "push" install, you must do it manually:
In the Backup Exec console, go to the Backup and Restore tab. Right-click the server that failed with the error. Select Establish Trust from the menu. 2. Update the Remote Agent
Backup Exec generally requires the Remote Agent on target servers to match the Media Server’s version.
Check Versions: On both machines, go to Help and Documentation > About Backup Exec to verify the build numbers.
Push Reinstall: Right-click the server in the console and choose to update or reinstall the agent. 3. Verify and Reset Logon Credentials A common culprit is an outdated System Logon Account.
How to determine the installed version for Backup Exec - Veritas 0xe00086cc backup exec
In the landscape of modern data management, Veritas Backup Exec stands as a cornerstone for organizational resilience. However, few things disrupt the peace of a system administrator like the cryptic arrival of an error code. Among these, 0xe00086cc—often accompanied by the message "A failure occurred while connecting to the Backup Exec Remote Agent"—is a particularly common hurdle that highlights the intricate handshake required between a media server and its remote targets. The Anatomy of the Error
At its core, error 0xe00086cc is a communication failure. It signifies that the Backup Exec media server attempted to establish a secure link with the Remote Agent for Windows (RAWS) on a target machine but was rebuffed. This isn't merely a "plug unplugged" scenario; it usually points to a breakdown in the authentication or networking protocols that govern how these two entities trust one another. Primary Catalysts Several factors typically trigger this disruption:
The Trust Relationship: Modern versions of Backup Exec require an explicit "trust" to be established between the server and the remote agent. If this certificate-based handshake is revoked or expires, the connection fails immediately with 0xe00086cc.
Network Interruption: Firewalls are frequent culprits. If the required ports (traditionally NDMP port 10000) are blocked by a local Windows Firewall or a network appliance, the media server remains "blind" to the remote agent's presence.
Service Status: Occasionally, the solution is as simple as the Remote Agent service on the target machine being stopped or hung, preventing it from listening for incoming requests. Path to Resolution
Resolving the 0xe00086cc error requires a methodical approach to infrastructure troubleshooting:
Re-establish Trust: The most effective fix is often right-clicking the remote server within the Backup Exec console and selecting "Establish Trust." This refreshes the security certificates.
Verify Services: Ensure the Backup Exec Remote Agent for Windows is running on the target server and set to 'Automatic.'
Audit Connectivity: Use tools like telnet or Test-NetConnection to verify that port 10000 is open and reachable between the two machines. Conclusion
While error 0xe00086cc can temporarily halt backup operations, it serves as a vital diagnostic signal. By addressing the underlying trust and connectivity issues, administrators not only clear the error but also reinforce the security and reliability of their entire data protection strategy.
If you are currently troubleshooting this, I can help further if you let me know: What version of Backup Exec you are using? If you recently updated or changed credentials? If this is happening to one server or all of them?
Collect context
Quick checks (do these first)
Device/driver and firmware actions
Backup Exec-specific steps
Network/storage layer (if applicable)
When to escalate
Logs to gather before contacting support
If you provide the exact error text/hex code, Backup Exec version, and tape library/drive model, I can give targeted next steps.
If the error points specifically to System State or Registry, you may have registry corruption.
chkdsk /f /r on the system drive. Afterwards, run sfc /scannow. A single bad registry key can break the entire System State backup.When you see 0xe00086cc, the backup job usually starts successfully, runs for a few seconds or minutes, then crashes. In the job log, you’ll likely see the failure pointing to a specific Volume Shadow Copy Service (VSS) writer or a specific system state component (like the Registry or COM+ Class Database).
The core problem: Backup Exec requested a snapshot of a volume (usually C:) or a specific system component from VSS. The VSS writer responded, "I don't know where that file is," or "Someone locked this exclusively," causing the snapshot to become unstable.
Sometimes, VSS operations time out due to high I/O load.
If none of the above works, VSS system files may be corrupted. Error 0xe00086cc in Backup Exec: Causes, Solutions, and
On the backup source server:
cd /d %windir%\system32
net stop vss
net stop swprv
regsvr32 /s ole32.dll
regsvr32 /s vss_ps.dll
vssvc /register
regsvr32 /s /i swprv.dll
regsvr32 /s es.dll
regsvr32 /s stdprov.dll
regsvr32 /s vssui.dll
net start vss
net start swprv
Reboot and re-test.