摘要: 解流 xbstream -x < fullbackup2.xbstream -C /data/fullbackup xbstream -x < fullbackup2.xbstream -C /data/fullbackup02/解压for bf in `find . -iname "*\.qp"` 阅读全文
posted @ 2018-04-01 12:31 random_lee 阅读(262) 评论(0) 推荐(0) 编辑
摘要: ###增备数据库,如果后续还需要再次增备,则可以再次指定--extra-lsndir,如果与上次备份指定相同的位置,该文件被覆盖# innobackupex --compress --incremental --extra-lsndir=/backup/chkpoint --incremental- 阅读全文
posted @ 2018-04-01 12:30 random_lee 阅读(343) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python# -*- coding:utf-8 -*-# Author:Random_lee#pickle只能在python中使用,可以序列化函数的内存地址#json可以在多语言中使用,但是只能做简单的序列化# import jsonimport pickledef 阅读全文
posted @ 2018-04-01 12:12 random_lee 阅读(171) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python# -*- coding:utf-8 -*-# Author:Random_lee# import json## f=open('test.text','r')## data=json.loads(f.read())# print(data['age'])i 阅读全文
posted @ 2018-04-01 12:12 random_lee 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 1.定义:模块:用来从逻辑上组织python代码(变量,函数,类,逻辑:实现一个功能),本质就是.py结尾的python文件(文件名:test.py,对应的模块名:test)包:用来从逻辑上组织模块的,本质就是一个目录(必须带有一个__init__.py文件)2.导入方法import module_ 阅读全文
posted @ 2018-04-01 12:11 random_lee 阅读(529) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/tkqasn/p/6001134.html 阅读全文
posted @ 2018-04-01 12:09 random_lee 阅读(181) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/tkqasn/p/6001134.html 阅读全文
posted @ 2018-04-01 12:06 random_lee 阅读(99) 评论(0) 推荐(0) 编辑