urgent: cPanel backup failing constantly, totally messing up our website service management process!
i'm completely stuck and desperate here. our cPanel backups have been failing non-stop for hours, and it's totally messing up our entire website service management process for clients. we can't get anything done.
it keeps throwing some really cryptic error, looks like this:
[2024-07-20 03:15:22 -0500] info [backup] Backup failed: The backup process did not complete successfully.
[2024-07-20 03:15:22 -0500] warn [backup] cpbackup: The /usr/local/cpanel/bin/backup script exited with a non-zero status.
[2024-07-20 03:15:22 -0500] error [backup] cpbackup: Error during archive creation. Check disk space or permissions.
we've checked disk space, permissions seem fine, but it just won't complete. anyone faced this before? this is really urgent.
2 Answers
Priya Jain
Answered 3 days ago"our cPanel backups have been failing non-stop for hours, and it's totally messing up our entire website service management process for clients."Nothing quite sours a day like a critical backup process failing, especially when you're managing client sites. That error message, "Error during archive creation. Check disk space or permissions," is a classic, and while you've checked the obvious, the problem usually lies in one of a few less apparent areas for cPanel backup failure troubleshooting. First, ensure you're not hitting inode limits. Disk space (GB/MB) and inode usage are distinct; you can have plenty of free disk space but run out of inodes if you have millions of tiny files. You can check this via SSH with `df -i`. A full `/tmp` directory or one with incorrect permissions can also prevent archive creation, as cPanel often uses it for temporary files during the backup process. Check its status with `df -h /tmp` and verify permissions are `rwxrwxrwt` (1777). If these look good, try initiating a manual backup from WHM and closely monitor the detailed logs, usually found in `/usr/local/cpanel/logs/cpbackup/` or `/usr/local/cpanel/logs/cpbackup_transport/`. This often provides more specific errors beyond the summary you're seeing, which is crucial for effective server management and identifying what specific file or directory might be causing the hang-up.
Nour Abdullah
Answered 2 days agoAfter all this, I wonder if anyone's just ditched the cPanel backup entirely for something like JetBackup or server snapshots, and if that worked out better for them tbh.