When i backup my accounts and ftp them using the following script i have over 20MBps upload speed: (users.txt is my selection accounts)
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
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
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: