C
C
camokatik2013-02-14 09:35:57
Backup
camokatik, 2013-02-14 09:35:57

Software for backup from shared hosting

Hello.
Tell me, please, is there any software for convenient backup to a home computer under win7 with shared hosting via ftp? Ideally with gui and scheduler.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
AgentSIB, 2013-02-14
@AgentSIB

I would write a script and put it in the scheduler (well, or nncron). The script is not really big. Connects to FTP, merges data, packs it into an archive, marks it with a date.
www.pcreview.co.uk/forums/set-up-simple-ftp-download-batch-job-t2345081.html - here is an example of a download . It
should not be difficult to archive using 7z in a bat script.
Of course you can find software. but it will most likely be paid.

I
Ilya Evseev, 2013-02-14
@IlyaEvseev

We search in Google: "windows ftp sync".
Here we find:
- http://forum.ixbt.com/topic.cgi?id=7:32183#3
- winscp.net/eng/docs/task_synchronize
and 100500 more options.

D
DobroFenix, 2013-02-14
​​@DobroFenix

Maybe someone will come in handy ...
There is an ftp server. Download files from it, archive, upload to another server also via ftp
BASH:
DATE=`/bin/date '+%d.%m.%Y'`
rm -rf /root/site/$DATE
mkdir /root/ site/$DATE
lftp -e 'mirror -e FTPDIR /root/site/$DATE/; bye;' -u FTPUSER:FTPPASS FTP_HOST
cd /root/site/$DATE
/bin/tar -zcf /root/site/site_$DATE.tar.gz ./
ftp -inv 10.1.1.5 <<END_SCRIPT
quote USER USERNAME
quote PASS PASSWORD
put /root/site/site_$DATE.tar.gz /site_$DATE.tar.gz
bye
exit

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question