Cloud House Technologies Logo
CloudHouse Technologies
HomeServicesProjectsBlogAbout UsCareersContact UsLogin
    Cloud House Technologies Logo
    CloudHouse Technologies
    HomeServicesProjectsBlogAbout UsCareersContact UsLogin

    cPanel/WHM Backup Destination Not Working? Fix Google Drive, S3, FTP & Rsync Errors

    Priya

    Content Writer & Researcher

    Last Updated: 8 July 2026
    🖥️

    Is Your WHM Backup Destination Silently Failing Every Night?

    Broken offsite backups are invisible until disaster strikes. CloudHouse's server management team audits, configures, and monitors your WHM backup destinations 24/7 — so you never lose data. Get in touch now.

    🔧 Book Free DiagnosisCall NowWhatsApp
    🖥️12,400+PCs Fixed
    ⭐4.9★Google Rating
    ⚡<15 minAvg. Response
    🛡️ISO 27001Certified

    You set up WHM's Backup Configuration, picked an additional destination — Google Drive, Amazon S3, FTP, or rsync — clicked Save and Validate Destination, and got a failure. Or worse: it says "Success," but no files actually arrive. cPanel/WHM backup destinations are one of the most misunderstood areas of server management, and broken backups are a silent catastrophe waiting to happen.

    This guide walks through every common failure mode for WHM additional backup destinations and the exact commands to diagnose and fix each one.

    How WHM Additional Backup Destinations Work

    WHM's built-in backup system (WHM → Backup → Backup Configuration) supports two layers: local backups stored on the same server, and additional destinations that transport those backups offsite. The destinations include:

    • Google Drive — via OAuth2 credentials
    • Amazon S3 (and S3-compatible stores like Wasabi, Backblaze B2, Linode Object Storage)
    • FTP / SFTP — plain file transfer to a remote host
    • rsync — SSH-based incremental sync
    • WebDAV and custom destinations

    When a destination fails, WHM logs errors to:

    /usr/local/cpanel/logs/cpbackup_transporter.log

    Always start there. Run this to tail the log during a test:

    tail -f /usr/local/cpanel/logs/cpbackup_transporter.log

    💡 None of these worked? Skip the guesswork.

    Get Expert Help →

    Step 1: Run a Manual Backup Test and Read the Log

    1Trigger a manual backup

    In WHM, go to Backup → Backup Configuration → Additional Destinations, locate your destination, and click Save and Validate Destination. This writes and removes a test file.

    From the command line, you can also trigger the full backup transport manually:

    /usr/local/cpanel/bin/backup --force 2>&1 | tee /tmp/backup_test.log
    2Read the transport log
    grep -i "error\|fail\|warn\|timeout" /usr/local/cpanel/logs/cpbackup_transporter.log | tail -50

    Common error patterns and what they mean:

    • Connection timed out — firewall blocking the port, or timeout value too low
    • Authentication failed — wrong credentials, expired token, or IAM permission missing
    • No space left on device — destination storage is full
    • SSL certificate verify failed — TLS mismatch on custom S3 endpoints
    • Permission denied — the remote user lacks write access to the target directory
    1Re-generate credentials

    In WHM → Backup Configuration → Additional Destinations, click Edit on your Google Drive destination. Click Generate Credentials — a new browser tab opens to re-authorize. Complete the OAuth flow and save.

    2Check the API project is still active

    Go to Google Cloud Console → APIs & Services → Credentials. Confirm the OAuth 2.0 Client ID you used still exists and the Google Drive API is enabled for that project.

    3Verify the target folder exists and is shared

    The folder name you specified in WHM must exist inside the Google Drive of the authorized account. If the folder was renamed or deleted, WHM cannot write to it.

    4Check quota
    # Google Drive storage — check available space
    # WHM does not pre-check destination quota; it fails mid-transfer if full
    # Use the Google account's Storage page to verify free space
    
    1Verify credentials and permissions

    The IAM user needs at minimum:

    {
      "Effect": "Allow",
      "Action": ["s3:PutObject","s3:GetObject","s3:DeleteObject","s3:ListBucket"],
      "Resource": ["arn:aws:s3:::your-bucket-name","arn:aws:s3:::your-bucket-name/*"]
    }

    Test from the server command line with the AWS CLI:

    aws s3 ls s3://your-bucket-name --region us-east-1

    If this fails, the problem is IAM — not WHM.

    2Check server time sync

    AWS signatures are time-sensitive. A clock drift >5 minutes causes authentication failures:

    timedatectl status
    # If not synchronized:
    systemctl restart chronyd   # or: ntpdate -u pool.ntp.org
    3Fix bucket name — no dots allowed

    A bucket name containing a dot (e.g. my.backup.bucket) breaks path-style S3 requests and causes SSL errors. Rename the bucket using only lowercase letters, numbers, and hyphens.

    4S3-compatible endpoints (Wasabi, Backblaze B2, Linode)

    For non-AWS S3 providers, set the S3 URL field in WHM to the custom endpoint. Example for Wasabi:

    s3.wasabisys.com

    For Backblaze B2:

    s3.us-west-004.backblazeb2.com

    Leave the region field matching the bucket's actual region. Test SSL:

    openssl s_client -connect s3.wasabisys.com:443 -servername s3.wasabisys.com < /dev/null
    1Test the FTP connection manually
    ftp -n <<EOF
    open YOUR_FTP_HOST 21
    user YOUR_FTP_USER YOUR_FTP_PASS
    pwd
    bye
    EOF

    If this fails, the problem is network connectivity or credentials — not WHM.

    2Enable passive mode

    Active FTP (PORT mode) is blocked by most firewalls. In WHM → Backup Configuration → your FTP destination, ensure Passive FTP is checked.

    3For SFTP — check key authentication

    WHM uses an SSH key pair for SFTP destinations. Generate the key and copy it to the remote server:

    # Generate key on the cPanel server (as root)
    ssh-keygen -t rsa -b 4096 -f /root/.ssh/cpanel_backup_key -N ""
    
    # Copy public key to remote server
    ssh-copy-id -i /root/.ssh/cpanel_backup_key.pub user@remote-host
    
    # Test the connection
    ssh -i /root/.ssh/cpanel_backup_key user@remote-host "echo OK"

    In WHM's SFTP destination config, enter the full path to the private key file.

    4Check remote directory permissions
    ssh user@remote-host "ls -la /path/to/backup/dir"
    # The FTP/SFTP user must own or have write access to the target directory
    1Test the SSH connection from cPanel server
    ssh -i /root/.ssh/id_rsa root@REMOTE_HOST "echo SSH OK"

    If this fails, check:

    • SSH port (default 22 — confirm in WHM destination config)
    • Remote server firewall allows connections from this server's IP
    • The public key is in ~/.ssh/authorized_keys on the remote
    2Check rsync is installed on both sides
    # On the cPanel server
    which rsync && rsync --version
    
    # On the remote server
    ssh root@REMOTE_HOST "which rsync && rsync --version"
    3Increase the timeout for large transfers

    In WHM → Backup Configuration → your rsync destination, increase the Timeout value. For servers with 50+ cPanel accounts, set it to at least 7200 seconds (2 hours).

    4Fix "unable to prune" errors

    If WHM logs show unable to prune transport, the remote directory has permission issues. Fix:

    ssh root@REMOTE_HOST "chown -R cpanel_backup_user:cpanel_backup_user /backup/path && chmod -R 755 /backup/path"

    Step 6: Verify Backups Are Actually Arriving

    The validation test only writes and deletes a small test file — it doesn't confirm a full backup transfer. After your next scheduled backup window, verify manually:

    For S3:

    aws s3 ls s3://your-bucket-name/ --recursive | sort -k1,2 | tail -20

    For rsync/SFTP remote:

    ssh root@REMOTE_HOST "ls -lht /backup/path/ | head -20"

    For Google Drive: Log into the Google account and check the target folder directly.

    Also verify the backup log shows "Transport complete" for each destination:

    grep -i "transport complete\|destination" /usr/local/cpanel/logs/cpbackup_transporter.log | tail -30

    FAQs

    Conclusion

    WHM backup destinations fail silently more often than they loudly error — and that silence is dangerous. By reading /usr/local/cpanel/logs/cpbackup_transporter.log, testing each connectivity layer independently, and verifying backups actually land in the destination after the transfer window, you can be confident your offsite copies are real. If you're managing multiple cPanel servers and need reliable backup architecture built and monitored end-to-end, CloudHouse's server management team can set it up and keep it working.

    Get the Free Linux Server Admin Cheatsheet (PDF)

    Essential commands for server management, networking, and troubleshooting — all on one printable page.

    Running Linux servers? Let us manage them for you.

    Our Managed Linux Server plans cover updates, security hardening, monitoring, and 24/7 incident response — so your servers stay up and your team stays focused.

    • Proactive OS patching and security updates
    • 24×7 monitoring with instant alerting
    • Backup configuration and disaster recovery
    • Dedicated Linux engineers on call
    See Pricing Plans →

    What our customers say

    “Our production server went down at 2 AM. CloudHouse had it back online in under 20 minutes. Incredible response time.”

    Arun S.

    CTO, SaaS Startup

    “They migrated our entire infrastructure from Ubuntu 18 to 22 with zero downtime. Couldn't have asked for better.”

    Deepak N.

    DevOps Lead

    Frequently Asked Questions

    Validation only writes and removes a small test file — it doesn't test a full backup transfer. The actual backup transport runs during your scheduled backup window. Check /usr/local/cpanel/logs/cpbackup_transporter.log after that window, and verify files landed at the destination manually using aws s3 ls or SSH.

    Book your free 15-minute diagnosis

    A certified technician will call you back within 15 minutes during business hours.

    Share this article

    Leave a Comment

    Comments (0)

    Loading comments...

    Need Help With cPanel WHM Backups?

    If your additional backup destination keeps failing — whether it's Google Drive, S3, FTP, or rsync — CloudHouse can diagnose the root cause and set up a reliable offsite backup system that actually runs. Talk to our server management experts today.

    Call Now — FreeWhatsApp Us

    Why CloudHouse?

    • ISO 27001:2022 certified
    • 12,400+ devices supported
    • 4.9★ on Google
    • Sub-15-minute response

    CloudHouse Technologies

    Innovative cloud solutions for modern businesses. We deliver cutting-edge technology with exceptional service.

    Contact Us

    CloudHouse Technologies Pvt.Ltd
    Special Economic Zone(SEZ),
    Infopark Thirissur,4B-15,
    Indeevaram,Nalukettu Road,
    Koratty, Kerala, India-680308
    0480-27327360
    info@cloudhousetechnologies.com

    Quick Links

    • Our Services
    • Gold Loan Software
    • About Us
    • Contact
    • Terms and Conditions
    • Privacy Policy
    ISO27001:2022
    Certified

    © 2026 CloudHouse Technologies Pvt.Ltd. All rights reserved.

    Back to top