摘要:背景一哥們發了個訴求,總覺得自己的服務器不安全,想搞個定時備份文件并發送到自己的郵箱實現代碼如下簡單說明打包文件這個實現比較初級,直接用命令進行打包發送郵件這個就不說了,現成的模塊直接拿來用日志記錄加上日志,可以很清
背景
一哥們發了個訴求,總覺得自己的服務器不安全,想搞個定時備份文件并發送到自己的郵箱
1 實現代碼如下# -*- coding: utf-8 -*- from __future__ import absolute_import, unicode_literals import os import datetime import logging import logging.config from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText from email.header import Header from email.mime.application import MIMEApplication import smtplib name = datetime.datetime.now().strftime("%Y%m%d%H%M%S") base_path = "/root/xxxx/temp" zip_path = "/root/xxxx/backup/{}.tar.bz2".format(name) def set_logging(): """""" log_dir, log_file = "/root/xxxx/logs", "/root/xxxx/logs/backup.log" if not os.path.exists(log_dir): os.mkdir(log_dir) if not os.path.exists(log_file): open(log_file, "w") DEFAULT_LOGGING = { "version": 1, "disable_existing_loggers": False, "formatters": { "formatone": { "format": "[%(asctime)s] %(levelname)s : %(message)s", } }, "handlers": { "file": { "level": "DEBUG", "filename": "/root/xxxx/logs/backup.log", "formatter": "formatone", "class": "logging.handlers.RotatingFileHandler", "maxBytes": 100 * 1024 * 1024, "backupCount": 10, }, }, "loggers": { "backup": { "handlers": ["file"], "level": "INFO", }, } } logging.config.dictConfig(DEFAULT_LOGGING) def zip_files(): """zip files""" os.system("tar -cjf {} -C {} data".format(zip_path, base_path)) def sendmail(): """send mail""" set_logging() zip_files() logger = logging.getLogger("backup") mail_from, password = "xxxxxxx@aliyun.com", "xxxxxxx" mail_to = "xxxxx@qq.com" smtp_server = "smtp.aliyun.com" msgRoot = MIMEMultipart("related") msgRoot["Subject"] = "send backup files {}".format(name) msgRoot["From"] = "{}<{}>".format(Header("backup", "utf-8"), mail_from) msgRoot["To"] = mail_to msgText = MIMEText("backup files", "plain", "utf-8") msgRoot.attach(msgText) zip_con = MIMEApplication(open(zip_path,"rb").read()) zip_con.add_header("Content-Disposition", "attachment", filename="{}.tar.bz2".format(name)) msgRoot.attach(zip_con) try: server = smtplib.SMTP_SSL(smtp_server) server.login(mail_from, password) server.sendmail(mail_from, mail_to, msgRoot.as_string()) server.quit() logger.info("send {} backup files success".format(name)) except Exception, e: logger.error("send {} failed {}".format(name, e)) sendmail() if __name__ == "__main__": sendmail()2 簡單說明 2.1 打包文件
這個實現比較初級,直接用 shell 命令進行打包
def zip_files(): """zip files""" os.system("tar -cjf {} -C {} data".format(zip_path, base_path))2.2 發送郵件
這個就不說了,現成的模塊直接拿來用
2.3 日志記錄加上日志,可以很清楚的讓我知道發送情況如下,示例如下:
[2017-04-14 00:00:03,251] INFO : send 20170414000001 backup files success [2017-04-14 03:00:02,620] INFO : send 20170414030001 backup files success [2017-04-14 06:00:02,406] INFO : send 20170414060001 backup files success [2017-04-14 09:00:02,349] INFO : send 20170414090001 backup files success [2017-04-14 12:00:02,299] INFO : send 20170414120001 backup files success [2017-04-14 15:01:04,696] ERROR : send 20170414150001 failed [Errno 110] Connection timed out [2017-04-14 15:01:05,401] INFO : send 20170414150001 backup files success2.4 定時處理
定時這個處理,直接使用 crontab 命令,創建個 backup_cron 文件,寫入
0 */3 * * * python /root/xxxxx/backup.py3 簡單小結
業務比較簡單,實現也比較簡單,沒啥可說的
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/40708.html
摘要:本文轉自豆漿下每天備份數據庫并發送到指定郵箱一配置郵箱這里使用的是網易郵箱郵箱的服務,服務器是。成功收到郵件,沒問題。編寫腳本和定時任務萬事俱備,接下來要做自動化工作建立一個備份腳本,并使用定時任務每天執行它。 本文轉自豆漿Melon :linux下每天備份Mysql數據庫并發送到指定郵箱 一、配置郵箱 這里使用的是網易郵箱126郵箱的STMP服務,服務器是smtp.126.com。...
摘要:肖鵬微博數據庫那些事兒肖鵬,微博研發中心技術經理,主要負責微博數據庫相關的業務保障性能優化架構設計,以及周邊的自動化系統建設。經歷了微博數據庫各個階段的架構改造,包括服務保障及體系建設微博多機房部署微博平臺化改造等項目。 showImg(https://segmentfault.com/img/bV24Gs?w=900&h=385); 對于手握數據庫的開發人員來說,沒有誤刪過庫的人生是...
閱讀 1518·2023-04-25 17:41
閱讀 3040·2021-11-22 15:08
閱讀 842·2021-09-29 09:35
閱讀 1605·2021-09-27 13:35
閱讀 3323·2021-08-31 09:44
閱讀 2716·2019-08-30 13:20
閱讀 1939·2019-08-30 13:00
閱讀 2557·2019-08-26 12:12