"Legacy Backup" slow FTP upload

armin654

Well-Known Member
Feb 12, 2014
45
0
6
cPanel Access Level
Root Administrator
When i backup my accounts and ftp them using the following script i have over 20MBps upload speed: (users.txt is my selection accounts)

Code:
cat /backup/users.txt | while read CPUSER; do
echo "Now processing ${CPUSER} ..."
/scripts/pkgacct ${CPUSER} /path/tofile/
done

## Here we will put the backups to our FTP server
HOST='x.x.x.x'
USER='ouruser'
PASS='ourpass'
TARGETFOLDER='/'
SOURCEFOLDER='/path/tofile'

# login to remote server
ftp -n -i $HOST <<EOF
user $USER $PASS
binary
lcd /backup/underDev
cd $TARGETFOLDER
mput *.gz
quit
EOF
but when i check FTP server for upload speed of automatic backups of ""Legacy Backup" i see they are less than 200kbps!!!!

How to fix this and where to check the issue? What is the reason and how to resolve it? Previously the server where not like this but currently it acts like this.

** It is noteworthy that my FTP server for backups is FileZilla Server on a windows server.

Kind Regards
 
Last edited by a moderator:

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,261
463
New It is strange but i managed to fix it by disabling task offload on my network interface
Hello :)

I'm happy to see you were able to address the issue. Thank you for updating us with the outcome.