1000字范文,内容丰富有趣,学习的好帮手!
1000字范文 > python备份文件代码_python备份文件以及mysql数据库的脚本代码

python备份文件代码_python备份文件以及mysql数据库的脚本代码

时间:2018-10-25 13:06:20

相关推荐

python备份文件代码_python备份文件以及mysql数据库的脚本代码

#!/usr/local/python

import os

import time

import string

source=[‘/var/www/html/xxx1/‘,‘/var/www/html/xxx2/‘]

target_dir=‘/backup/‘

target=target_dir+time.strftime(‘%Y%m%d‘)

zip_comm=‘zip -r %s %s‘%(target," ".join(source))

target_database=[‘DB_name1‘,‘DB_name2‘]

sql_user=‘root‘

sql_pwd=‘xxx‘

if os.system(zip_comm) == 0:

print ‘file backup Success is:‘,target

#if python version is 3.x ,print(‘file backup Success is:‘,target)

else:

print ‘file backup failed!‘

for database_name in target_database:

target_sql=target_dir+database_name+time.strftime(‘%Y%m%d‘)+‘.sql‘

sql_comm=‘/usr/local/mysql/bin/mysqldump -u %s -p%s %s > %s‘%(sql_user,sql_pwd,database_name,target_sql)

if os.system(sql_comm) == 0:

print database_name,‘is backup seccess!‘

else:

print database_name,‘is backup Failed!!‘

原文:/article/38264.htm

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。