How to run the backup process which is stuck using rsync?

While running the backup process, I was getting the error message as -

/usr/bin/rsync -rlptD --exclude=lastrun/* --exclude=bwusagecache/* --exclude=serviceauth/*
--exclude=dnsrequests_db/*--exclude=configs.cache/*--delete /var/cpanel//backup/weekly/incremental/system/dirs/_var_cpanel”
stalled while it ran for user “root”.

The error was being sent by email to the registered email address in WHM. 
 
Solution -
 
1. Please check the the server "Stats and Logs" tab in WHM >> Tweak Settings.
2. If it has been reached to it's threshold value then it will cause the above generated error.
3. Please increase the CPU of your server.
 
Once done then give a try. It resolved my issue!

Was this answer helpful?

 Print this Article

Also Read

How to perform LAMP installation on CentOS?

LAMP stands for Linux, Apache, MySQL, and PHP. It is nothing but Linux operating system with...

Basic exim commands

1. REMOVE MAILS BY ID - /usr/sbin/exim -v -Mrm (MAIL ID HERE) 2. LIST QUEUED MAILS -...

Daily Useful Linux Commands

Finding the username from provided hosting service name - /script/whoowns domain_name Finding...

Disk Usage Useful Command

Note - You can replace /home with correct '/' drive on your server. 1. Checking the disk usage -...

How to backup and restore large MySQL databases using mysqldump?

1. Backup database:#mysqldump -u username -p[username_password] databasename >...