- 论坛徽章:
- 0
|
1、在windows上安装vsftp并进行设置。
2、给你一个ftp脚本,你改改ip、用户名、密码、还有传输路径,就能用了
#!/bin/bash
#################################
## variable
#################################
#remote server dir
target_dir=
#local server dir
source_dir=/var/tmp
#compress file
backup_file=`hostname`_`date +%Y%m%d`.tgz
tmp_file=`find /home/zhan -type f`
#tar -zcvf $source_dir\/$backup_file $tmp_file >>/dev/null 2>&1
#script log and pid
script_log=/var/tmp/`basename $0`.log
lock_file=/var/tmp/`basename $0`.pid
#ftp attribute
ftpAddr1=127.0.0.1
ftpUser1=merry
ftpPasswd1=passw0rd
##################################
## function
##################################
#check the script whether is runing
checkRunning(){
if [[ -f "$lock_file" ]]
then
ps -ef | grep -v grep | grep `cat $lock_file` | grep "$0" >/dev/null
if [[ "$?" == "0" ]]
then
echo "$0 is runing ,pid is" `cat $lock_file` >>$script_log
exit 235
else
echo "pid file $lock_file is been overwritten." >>$script_log
rm -f $lock_file
fi
fi
echo $$ > $lock_file
}
#send files to remote server
send2ftp(){
cd $source_dir
ftp -v -n $ftpAddr1 <<!
user $ftpUser1 $ftpPasswd1
!pwd
bin
put $backup_file
bye
!
} >>$script_log 2>&1
#####################################
## run script
#####################################
echo "======================================================" >>$script_log
echo `date +'%F %T'` `basename $0` "is starting......" >>$script_log
checkRunning
tar -zcvf $source_dir\/$backup_file $tmp_file >>/dev/null 2>&1
send2ftp
echo `date +'%F %T'` "backup successed\!" >>$script_log
echo "======================================================" >>$script_log
exit 0
3、在linux上将脚本添加到crontab中就可以了。 |
|