Windows下通过BAT执行文件下载任务
近期为了进行备份策略的调整,需要将应用系统中部分的数据进行下载到另外搭建的备份服务器。因备份服务器为windows,故查相关资料和论坛上的帖子,梳理了一份适合自己系统的备份脚本(通过BAT文件执行FTP下载任务)。详细需求为:
每天到指定服务器下载名为:after"当天日期".dmp的数据库dump文件,输出脚本如下:
1).ftpUser为ftp服务器的用户名:
2).ftpPWD为ftp用户的密码;
3).ftpIP为服务器地址;
4).ftp脚本中的mget后面可以结合需求自定义下载规则。
[plain] view plain copy
print?
1.@echo off
2.rem Set User Name for Login to FTP Server
3.set ftpUser=<USERNAME>
4.
5.rem Set Password for the FTP User
6.set ftpPWD=<PASSWORD>
7.
8.rem Set the FTP Server IP
9.set ftpIP=10.10.6.111
10.
11.rem Set the RemoteFolder Path
12.set RemoteFolder=/app/backup
13.
14.rem Set LocalFolder Path
15.set LocalFolder=D:\DataBackup
16.
17.rem Get Date For File Name
18.nowDate=%date:~0,4%%date:~5,2%%date:~8,2%
19.
20.rem Define the ftp Command Scripts
21.set ftpcmd=%LocalFolder%\1_
22.> "%ftpcmd%" (
23.echo user %ftpUser% %ftpPWD%
24.echo cd "%RemoteFolder%"
25.echo lcd "%LocalFolder%"
26.echo bin
27.echo mget after%nowDate%.dmp*
session下载28.echo bye
29.)
30.@echo on
31.
32.rem Start Download Files use the Command File. If you want Start a new CMD Session to run it, Use "start " before "ftp"
33.ftp -n -i -s:"%ftpcmd%" %ftpIP% >%LocalFolder%\
34.
35.del %ftpcmd%
36.pause
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论