通过python+ftps远程备份企业数据

简介:

一、需求分析

     朋友公司有一台ERP服务器做了定时输出备份,设置输出的目录是D:\backup\年月日 目录,其中当前日期(类似20171011)这个是服务器定时备份时自动生成并输出到这个目录。想自动备份到远程服务器,实现数据异地备份。

    思路:

             python每天定时检查以当前日期备份的目录是否存在,不存在自行创建当前日期目前,并删除前一天的旧目录。压缩当前备份数据目录,并通过上传到远程ftps服务器。加入任务计划每天11.30执行(自动备份在11点)。


二、代码

#cat  upload.py

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#coding:utf-8
import  urllib,urllib2
from  ftplib  import  FTP_TLS
import  os
import  re
import  sys
import  time
import  zipfile
import  datetime
 
YestodayDir  =  (datetime.date.today()  -  datetime.timedelta(days = 1 )).strftime( "%Y%m%d" )
file_root_dir =  "D:\\backup"
TodayDir  =  str (time.strftime( "%Y%m%d" ,time.localtime()))
TodayFileName  =  TodayDir  +  '.zip'
FLAG  =  1
##压缩函数
def  zip_dir(dirname,zipfilename):
     filelist  =  []
     if  os.path.isfile(dirname):
         filelist.append(dirname)
     else  :
         for  root, dirs, files  in  os.walk(dirname):
             for  name  in  files:
                 filelist.append(os.path.join(root, name))
          
     zf  =  zipfile.ZipFile(zipfilename,  "w" , zipfile.zlib.DEFLATED)
     for  tar  in  filelist:
         arcname  =  tar[ len (dirname):]
         zf.write(tar,arcname)
     zf.close()
#创建以当前日期的目录,并删除昨天目录
def  check_bak_dir():
     global  FLAG
     os.chdir(file_root_dir)
     if  os.path.exists(YestodayDir):
         os.system( "rmdir %s /Q/S"  % YestodayDir)     #删除昨天的备份
     else :
         pass
     if  not  os.path.exists(TodayDir):
         print ( "no %s"  % TodayDir)
         os.mkdir(TodayDir)  #创建目录
         FLAG  =  0            #通过FLAg标志位来确定是否新创建目录
         return  FLAG
     else :
         pass
     
     
       
###上传到服务器
def  upload(filename):
     os.chdir(file_root_dir)
     ftp  =  FTP_TLS()
     ##此处填写你的ftp用户名和连接端口
     ftp.connect( "Your ip or domain" ,port)
     ftp.login( 'ftpuser' , ftpuser') 
     ftp.prot_p()
     ##服务器端存放的目录
     ftp.cwd( "home/back" )
   
     
     upload_file = unicode (filename,  "utf8" )   #windows
     =  open (upload_file,  'rb' )
     ftp.storbinary( 'STOR %s'  %  os.path.basename(upload_file),f)
     f.close()
     ftp.quit
if  __name__  = =  "__main__" :
     check_bak_dir()
     
     if  os.path.exists(TodayDir)  and  FLAG:      #如果目录存在前不是新创建,压缩上传
         print ( "Diractory is ziping ... " )
         zip_dir(TodayDir,TodayFileName)
         print ( "Upload bakcup ... " )
         upload(TodayFileName)
         print ( "Today %s upload success!"  % TodayFileName)
         print


三、添加计划任务

开始-->控制面板 --计划任务--添加计划任务 类似如下图:

wKiom1neOeCx53LaAAG8lWV1HyM639.png


四、手动执行验证效果如下

wKioL1ndy26iiblZAAGleh-K2vw348.png

登录ftps可以看到上传了20171011.zip压缩备份文件。

注意:此处代码为了隐私安全隐去了ftp的地址和端口及用户名和密码;另外建议使用ftp + SSL证书登录。以保障安全。










本文转自 dyc2005 51CTO博客,原文链接:http://blog.51cto.com/dyc2005/1971456,如需转载请自行联系原作者
目录
相关文章
|
2天前
|
前端开发 JavaScript Python
Python Web应用中的WebSocket实战:前后端分离时代的实时数据交换
在前后端分离的Web应用开发模式中,如何实现前后端之间的实时数据交换成为了一个重要议题。传统的轮询或长轮询方式在实时性、资源消耗和服务器压力方面存在明显不足,而WebSocket技术的出现则为这一问题提供了优雅的解决方案。本文将通过实战案例,详细介绍如何在Python Web应用中运用WebSocket技术,实现前后端之间的实时数据交换。
10 0
|
2天前
|
Python
Python编程案例:同一工作簿不同表单特定数据添加到工作簿的另一表单里
Python编程案例:同一工作簿不同表单特定数据添加到工作簿的另一表单里
|
3天前
|
Python
你知道 Python 如何解压缩数据吗
你知道 Python 如何解压缩数据吗
10 1
|
9天前
|
数据采集 数据挖掘 数据处理
Python中实现简单爬虫并处理数据
【9月更文挑战第31天】本文将引导读者理解如何通过Python创建一个简单的网络爬虫,并展示如何处理爬取的数据。我们将讨论爬虫的基本原理、使用requests和BeautifulSoup库进行网页抓取的方法,以及如何使用pandas对数据进行清洗和分析。文章旨在为初学者提供一个易于理解的实践指南,帮助他们快速掌握网络数据抓取的基本技能。
21 3
|
11天前
|
安全 Python
Python量化炒股的获取数据函数—get_industry()
Python量化炒股的获取数据函数—get_industry()
22 3
|
11天前
|
Python
Python量化炒股的获取数据函数—get_security_info()
Python量化炒股的获取数据函数—get_security_info()
21 1
|
1天前
|
存储 算法 搜索推荐
算法进阶之路:Python 归并排序深度剖析,让数据排序变得艺术起来!
算法进阶之路:Python 归并排序深度剖析,让数据排序变得艺术起来!
7 0
|
11天前
|
数据采集 存储 监控
如何使用 Python 爬取京东商品数据
如何使用 Python 爬取京东商品数据
40 0
|
11天前
|
Python
Python量化炒股的获取数据函数— get_billboard_list()
Python量化炒股的获取数据函数— get_billboard_list()
21 0
|
11天前
|
安全 数据库 数据格式
Python量化炒股的获取数据函数—get_fundamentals()
Python量化炒股的获取数据函数—get_fundamentals()
26 0